Data

Replication data are available in SQL and Rdata at https://github.com/judgelord/rulemaking

load(here::here("data", "ejPRnew.Rdata"))
ejPR <- ejPRnew #FIXME 

load(here::here("data", "ejFRnew.Rdata"))
ejFR <- ejFRnew

load(here::here("data", "ejcommentsnew.Rdata"))
ejcomments <- ejcommentsnew

load(here::here("data", "ej_race.Rdata"))

load(here::here("data", "rules_metadata.Rdata"))

# alternatively 
#rules <- dbGetQuery(con, "SELECT * FROM rules")

# unique
ejPR %<>% 
  select(-page, #FIXME,
         -open_for_comment,
         -type, -document_type, -withdrawn, -links) %>% 
  distinct()

ejFR %<>% 
  select(-page, #FIXME
         -open_for_comment,
         -type, -document_type, -withdrawn, -links) %>% 
  distinct()

ejcomments %<>% 
  select(-lastpage, -type, -document_type, -withdrawn, -links) %>% 
  distinct() 


# a function to clean raw selected text
clean_summary <- . %>% 
  mutate(summary = str_remove_all(highlighted_content,
               "./em../mark.|.mark..em.") %>% 
           str_replace_all("\\&hellip;\\&nbsp;"," ") %>% 
           str_replace_all("[^[A-z][0-9] \\.\\,\\?\\!\\;&\\;<>]", " ") %>% 
           str_remove_all("\\(|\\)|\\[|\\]") %>%
  str_squish() )

# ## Testing regex
# str_remove_all(ejPRnew$highlighted_content[1],
#                "./em../mark.|.mark..em.") %>% 
#            str_replace_all("\\&hellip;\\&nbsp;"," ") %>% 
#            str_replace_all("[^[A-z][0-9] \\.\\,\\?\\!\\;&\\;<>]", " ") %>% 
#            str_remove_all("\\(|\\)|\\[|\\]") %>%
#   str_squish() 

# summary vars
ejcomments %<>%
  mutate(docket_id = str_remove(id, "-[0-9]*$") ) %>% 
  clean_summary()

ejPR %<>% clean_summary()

ejFR %<>% clean_summary()

rules %<>% filter(document_type %in% c("Proposed Rule", "Rule"),
                    # drop rules before clinton
                  !is.na(posted_date),
                  posted_date > as.Date("1993-01-20"),
                  # rulemaking dockets only
                  docket_type == "Rulemaking" ) %>%
  # one document per docket (drop additional PRs )
  group_by(document_type, docket_id) %>%
  slice_max(number_of_comments_received)


# make summary vars for main data
rules %<>% 
  # # add ej comments and ej unique comment counts #FIXME merge in counts from old data, find if new API has this
  # left_join(ejcomments %>% 
  #             group_by(docket_id) %>% 
  #             summarise(ej_comments = sum(number_of_comments_received) ) ) %>%
  left_join(ejcomments %>% 
              count(docket_id, name = "ej_comments_unique") ) %>% 
  mutate(#ej_comments = replace_na(ej_comments, 0),
         ej_comments_unique = replace_na(ej_comments_unique, 0) ) %>% 
  # recode 1 as 0 to reduce colinearity with ej_comment, logical
  #FIXME make this a new var 
  mutate(ej_comments_unique = ifelse(ej_comments_unique == 1, 0, ej_comments_unique))

# indicators for ej in various docket-level variables
rules %<>% 
  group_by(docket_id) %>% 
  mutate(comments = sum(number_of_comments_received)) %>% 
  ungroup() %>% 
  mutate(ej_pr = docket_id %in% ejPR$docket_id,
         ej_comment = docket_id %in% ejcomments$docket_id,
         ej_fr = docket_id %in% ejFR$docket_id,
         # indicator for president
         president = ifelse(posted_date < as.Date("2017-01-17"), "Obama", "Trump"),
         president = ifelse(posted_date < as.Date("2009-01-20"), "G. W. Bush", president),
         president = ifelse(posted_date < as.Date("2001-01-20"), "Clinton", president),
         year = str_sub(posted_date, 1,4),
         Year = str_sub(posted_date, 3,4),
         Year = str_c("`", Year),
         agency = agency_id
         ) 

rules %<>% select(docket_id, 
                 docket_title, 
                 # ej_comments = ej_comments_unique, 
                 ej_comments_unique, 
                 ej_pr, 
                 ej_comment, 
                 ej_fr, 
                 president, year, 
                 comments, 
                 agency, 
                 document_type,
                 year,
                 Year) %>%
  distinct()

Documents

# ej-data-documenttype
# document type over time
rules %>% 
  ggplot() + 
  aes(x = year, fill = document_type) +
  geom_bar(alpha = .7, position = "dodge") + 
  labs(y  = "Number of Documents",
       x = "",
       fill = "") + 
  scale_fill_viridis_d(option="cividis", begin = .3, end = .7, direction = -1, ) + 
  theme(axis.text.x = element_text(angle = 45, vjust = .5),
        panel.grid.major.x = element_blank(),
        panel.border = element_blank())

Draft Rules

# ej-data-ejpr

# pr over time
rules %>% 
  filter(document_type == "Proposed Rule") %>% 
  ggplot() + 
  aes(x = year, fill = ej_pr) +
  geom_bar(alpha = .7, position = "dodge") + 
  labs(y  = "All Proposed Rules",
       x = "",
       fill = "EJ Addressed\nin Proposed Rule") + 
  theme(axis.text.x = element_text(angle = 45, vjust = .5),
        panel.grid.major.x = element_blank(),
        panel.border = element_blank())

# ej_pr over time
ejPR %>% 
  filter(!is.na(posted_date)) %>% 
  mutate(year = str_sub(posted_date,1,4)) %>%
  ggplot() + 
  aes(x = year) +
  geom_bar(alpha = .7, position = "dodge") + 
  labs(y  = "Proposed Rules\nAddressing Environmental Justice",
       x = "") + 
  theme(axis.text.x = element_text(angle = 45, vjust = .5),
        panel.grid.major.x = element_blank(),
        panel.border = element_blank())

Final rules

#ej-data-ejfr

# fr type over time
rules %>% 
  filter(document_type == "Rule") %>% 
  ggplot() + 
  aes(x = year, fill = ej_fr) +
  geom_bar(alpha = .7, position = "dodge") + 
  labs(y  = "All Final Rules",
       x = "",
       fill = "EJ Addressed\nin Final Rule") + 
  theme(axis.text.x = element_text(angle = 45, vjust = .5),
        panel.grid.major.x = element_blank(),
        panel.border = element_blank())

# ej_fr over time
ejFR %>% 
  filter(!is.na(posted_date)) %>% 
  mutate(year = str_sub(posted_date,1,4)) %>%
  ggplot() + 
  aes(x = year) +
  geom_bar(alpha = .7, position = "dodge") + 
  labs(y  = "Final Rules\nAddressing Environmental Justice",
       x = "") + 
  theme(axis.text.x = element_text(angle = 45, vjust = .5),
        panel.grid.major.x = element_blank(),
        panel.border = element_blank())

Subsets of data:

# SUBSETTING -------------------------------------------
#TODO sensitivity analysis to inclusion criteria

# filter to agencies that published at least one ej rule 
rules %<>% 
  group_by(agency) %>% 
  mutate(agency_ej_rules = sum(ej_fr),
         agency_ej_comments = sum(ej_comments_unique),
         agency_ej_nprms = sum(ej_pr)) %>%
  ungroup() %>% 
  filter(agency_ej_rules > 0)# | agency_ej_nprms > 0) #TODO sensitivity analysis

rules %>% distinct(docket_id, ej_pr, ej_fr) %>% count(ej_pr, ej_fr) %>% kablebox()
ej_pr ej_fr n
FALSE FALSE 26517
FALSE TRUE 1318
TRUE FALSE 548
TRUE TRUE 1623
# All proposed rules
allPR <- rules %>% 
  # subset to final rules
  filter(document_type == "Proposed Rule")


# All final rules
allFR <- rules %>% 
  # subset to final rules with an NPRM 
  filter(document_type == "Rule") %>%
  # direct to final rules
  mutate(direct = ifelse(docket_id %in% allPR$docket_id, "Draft Rule Published", "Direct to Final Rule"))

Agencies that published at least 1 rule addressing EJ

Subsetting to agencies that pubished at least one rule explicitly addressing EJ from 1992 through 2020 yields 42482354 public comments on 26670 rulemaking dockets from 40 agencies, each publishing at least one rule that explicitly addressed environmental justice. 24362 unique comments (excluding duplicates) use the phrase “environmental justice”.

#ej-data-agencies
breaks <-  c("`16", 
             "`00", "`04", "`08", "`20")

allFR %>%
  filter(year > 2004) %>%
  ggplot() + 
  aes(x = Year, fill = ej_fr) +
  facet_wrap("agency", scales = "free_y") +
  geom_bar(alpha = .7) +
  labs(fill = "EJ in Final Rule",
       x = "",
       y = "")+ 
  scale_x_discrete(breaks = breaks ) 

Agencies that received at least 100 unique EJ comments

# ej-data-agencies100

breaks <-  c("`16", "`12", 
             "`00", "`04","`08", "`92",  "`96", "`20")
# agencies that published at least 100 rules with ej comments
allFR %>% 
  filter(agency_ej_comments > 100 | agency_ej_rules > 10 | agency == "FEMA",
         year > 2004) %>% #distinct(agency, docket_id, agency_ej_comments)
  ggplot() + 
  aes(x = Year, fill = ej_fr) +
  facet_wrap("agency", scales = "free_y") +
  geom_bar(alpha = .7) + 
  labs(fill = "EJ in Final Rule",
       y = "Number of Rules") + 
  scale_x_discrete(breaks = breaks ) 

Draft Rules by President

#ej-pr-president

allPR %>% 
  count(Year, ej_pr, president) %>%
  ggplot() + 
  aes(x = Year, y = n, fill = ej_pr) + 
  geom_col(alpha = .7, position = "dodge") + 
  facet_grid(. ~ president, scales = "free") + 
  labs(x = "Year",
       y = "Number of Proposed Rules",
       fill = "Environmental\nJustice\nAnalysis") + 
  theme(panel.grid.major.x = element_blank())

Final Rules by President

# ej_fr-president

allFR %>% 
  count(Year, ej_fr, direct, president) %>%
  ggplot() + 
  aes(x = Year, y = as.integer(n), fill = ej_fr) + 
  geom_col(alpha = .7, position = "dodge") + 
  facet_grid(direct ~ president, scales = "free") + 
  labs(x = "Year",
       y = "Number of Final Rules",
       fill = "Environmental\nJustice\nAnalysis") + 
  theme(panel.grid.major.x = element_blank())

allFR %>% 
  filter(direct == "Draft Rule Published") %>% 
  mutate(ej_pr = ifelse(ej_pr, "EJ in Draft & Final Rule", "EJ Only in Final Rule"),
         ej_pr = ifelse(ej_fr, ej_pr, "No EJ Analysis")) %>% 
  count(Year, ej_pr, ej_comment, president) %>% 
  ggplot() + 
  aes(x = Year, y = n, fill = ej_comment) + 
  geom_col(alpha = .7) + 
  facet_grid(ej_pr ~ president, scales = "free") + 
  labs(x = "",
       y = "Number of Rules",
       fill = "Comments Raised\nEnvironmental\nJustice Concerns") + 
  theme(panel.grid.major.x = element_blank())


Comments

by President

# ej_comments

allFR %>% 
  filter(direct == "Draft Rule Published") %>% 
  mutate(ej_pr = ifelse(ej_pr, "EJ in Draft & Final Rule", "EJ Only in Final Rule"),
         ej_pr = ifelse(ej_fr, ej_pr, "No EJ Analysis")) %>% 
  ggplot() + 
  aes(x = Year, color = ej_comment, shape = ej_comment) + 
  # plot ej comments on top
  geom_jitter(alpha = .3, 
              aes(y = ifelse(ej_comment, NA, comments) ) ) + 
    geom_jitter(alpha = .3,
              aes(y = ifelse(ej_comment, comments, NA) ) ) +
  #geom_jitter(alpha = .3) + 
  facet_grid(ej_pr ~ president, scales = "free_x") + 
  scale_y_log10(labels = scales::comma)  +
  #scale_x_date(date_labels = "%y") + 
  labs(x = "",
       y = "Total Number of Comments (log scale)",
       color = "Comments Raised\nEnvironmental\nJustice Concerns",
       shape = "Comments Raised\nEnvironmental\nJustice Concerns") +
  scale_x_discrete(breaks = breaks) + 
  scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") 

By Organization

#ej-orgs

ejorgs <- ejcomments %>% 
  drop_na(organization) %>% 
  filter(!organization %in% c("NA")) %>% 
  group_by(organization) %>%
  #add_count(docket_id) %>% #TODO
  summarise(unique = n(),
            total = sum(number_of_comments_received)) %>% 
  arrange(-total) 


ejorgs %>% 
  kablebox() 
organization unique total
Sierra Club 38 342075
Earthjustice 27 177457
Move On 1 165948
NRDC Action Fund 1 100305
The Pew Charitable Trusts 3 63771
NRDC 1 62215
Friends of the Earth 7 61871
CREDO Action 3 55611
Democracy for America 1 4426
Gulf Restoration Network 3 560
National Religious Partnership for the Environment 1 311
Oceana, et al.  1 140
Center for Biological Diversity and 117 other organizations 1 118
Center for Biological Diversity 70 70
Sound Rivers 1 70
Center for Food Safety 39 39
Environmental Defense Fund 29 29
Natural Resources Defense Council 12 12
Beyond Nuclear 9 9
California Homeless Youth Project 8 8
Citizens Trade Campaign 8 8
Arctic Slope Regional Corporation 7 7
Louisiana Chemical Association 6 6
Ms.  6 6
Alaska Eskimo Whaling Commission 5 5
American Public Transportation Association 5 5
California Air Resources Board 5 5
California Pan-Ethnic Health Network 5 5
Environmental Defense Center 5 5
Oceana 5 5
PolicyLink 5 5
Self 5 5
Southern Environmental Law Center 5 5
Standing Rock Sioux Tribe 5 5
Western Watersheds Project 5 5
WildEarth Guardians 5 5
AOGA, API and PAW 4 4
California Labor Federation 4 4
Clean Ocean Action 4 4
Defenders of Wildlife 4 4
Environmental Law Foundation 4 4
International Brotherhood of Teamsters 4 4
Ms 4 4
Murray Energy Corporation 4 4
North Slope Borough 4 4
Northeast Seafood Coalition 4 4
Public Advocates Inc.  4 4
Public Citizen 4 4
United States Environmental Protection Agency 4 4
USCG 4 4
AC Transit 3 3
b’more mobile 3 3
Bold Nebraska 3 3
California Coastal Commission 3 3
County of Ventura 3 3
Earthjustice, et al.  3 3
Edison Electric Institute (EEI) 3 3
Environmental Protection Agency 3 3
Farmworker Justice 3 3
Metropolitan Transportation Commission 3 3
Mrs.  3 3
none 3 3
Riverkeeper, Inc.  3 3
Seattle Monorail Project 3 3
State of Connecticut Department of Transportation 3 3
Transportation for America 3 3
Washington State Department of Ecology 3 3
AFL-CIO 2 2
Altschuler, Berzon, Nussbaum, Rubin & Demain 2 2
Altshuler, Berzon, Nussbaum, Rubin, and Demain 2 2
American Lung Association 2 2
American Public Health Association 2 2
Apache County, Arizona 2 2
Atlanta Regional Commission 2 2
Boston Region MPO 2 2
California Association of Food Banks 2 2
California Department of Transportation, Division of Mass Transportation 2 2
City of Oxnard 2 2
Coalition for Healthy Ports 2 2
Columbia River Inter-Tribal Fish Commission 2 2
Consumer Federation of America 2 2
Consumer Federation of America (CFA) 1 2
County of El Paso 2 2
CRCOG 2 2
Defend Rural America 2 2
Dr.  2 2
Earthjustice et al.  2 2
East Bay Pesticide Alert/Don’t Spray California 2 2
East-West Gateway Council of Governments 2 2
Eastern Arizona Counties Organization 2 2
El Paso County, Texas Planning and Development Department 2 2
Elm Park Civic Association, Inc.  2 2
Enterprise Community Partners 2 2
EPA 2 2
Federal Transit Administration 2 2
Fort McDowell Yavapai Nation 2 2
Greater Fort Worth Sierra Club 2 2
Green Line Advisory Group for Medford 2 2
Greenpeace USA 2 2
Greyhound Lines, Inc.  2 2
#TODO table by most dockets commented on 

ejorgs_FR <- ejcomments %>%
  mutate(docket_id =str_remove(id, "-[0-9]*$")) %>%
  #select(docket_id)
  filter(docket_id %in% allFR$docket_id) %>%
  drop_na(organization) %>%
  filter(!organization %in% c("NA")) %>%
  group_by(organization, docket_id) %>%
  #add_count(docket_id) %>% #TODO
  summarise(unique = n(),
            total = sum(number_of_comments_received)) %>%
  ungroup() %>% 
  arrange(-total)

# per docket 
ejorgs_FR %>%
  kablebox()
organization docket_id unique total
NRDC Action Fund CEQ-2019-0003 1 100305
Sierra Club FWS-HQ-ES-2013-0073 1 89225
The Pew Charitable Trusts NOAA-NMFS-2013-0050 1 63769
NRDC FWS-R6-ES-2011-0039 1 62215
CREDO Action OSM-2016-0006 1 55609
Sierra Club BLM-2018-0001 1 30883
Earthjustice BLM-2016-0001 1 11478
Center for Biological Diversity and 117 other organizations BLM-2017-0001 1 118
Environmental Defense Fund NHTSA-2018-0067 19 19
Sierra Club NHTSA-2018-0067 5 5
AOGA, API and PAW FWS-R9-ES-2011-0073 2 2
Apache County, Arizona FWS-R2-ES-2013-0056 2 2
Center for Biological Diversity FWS-R5-ES-2012-0045 2 2
Center for Food Safety NOAA-NMFS-2008-0233 2 2
Earthjustice BSEE-2018-0002 2 2
North Slope Borough FWS-R7-ES-2009-0042 2 2
Oxfam America TREAS-DO-2013-0005 2 2
PolicyLink FTA-2010-0009 2 2
Poverty & Race Research Action Council and other organizations FTA-2010-0009 2 2
Round Valley Indian Tribes CEQ-2019-0003 2 2
Save the Manatee Club FWS-R4-ES-2015-0178 2 2
8028556 CEQ-2019-0003 1 1
815 N. Broadway CEQ-2019-0003 1 1
A.D. Marble CEQ-2019-0003 1 1
AC Transit District FTA-2010-0009 1 1
adak community development corporation NOAA-NMFS-2010-0201 1 1
Agua Caliente Band of Cahuilla Indians CEQ-2019-0003 1 1
Alabama-Tombigbee Rivers Coalition FWS-R4-ES-2008-0058 1 1
Alaska Oil and Gas Association FWS-R7-ES-2012-0009 1 1
Aleut Enterprise, LLC NOAA-NMFS-2010-0201 1 1
Alternatives for Community & Environment PHMSA-2012-0082 1 1
Amador County Transportation Commission FHWA-1999-5933 1 1
American Association of State Highway and Transportation Officials FHWA-2008-0114 1 1
American Lung Association NHTSA-2018-0067 1 1
American Public Health Association FSIS-2011-0012 1 1
American Public Transportation Association FHWA-2005-22986 1 1
American Public Transportation Association FTA-2005-22428 1 1
American Public Transportation Association FTA-2010-0009 1 1
Apache County Natural Resource Coordinator FWS-R2-ES-2010-0085 1 1
Arctic Slope Regional Corp.  FWS-R7-ES-2009-0042 1 1
ASPCA and Compassion Over Killing FSIS-2016-0017 1 1
ASPI OSM-2007-0007 1 1
Attorney General of the State of California NHTSA-2008-0089 1 1
AVCP, BSFA, Kawerak, TCC and YRDFA NOAA-NMFS-2010-0032 1 1
Best Best & Krieger LLP FWS-R2-ES-2011-0053 1 1
Bighorn County FWS-R6-ES-2008-0008 1 1
Black Warrior Riverkeeper, Inc.  OSM-2010-0018 1 1
Board of Supervisors - County of Los Angeles FTA-2010-0009 1 1
Bonner County, Idaho; Idaho State Snowmobile Association; and Pacific Legal Foundation FWS-R1-ES-2012-0097 1 1
Bowlby & Associates, Inc.  FHWA-2008-0114 1 1
CAH316675474 CEQ-2019-0003 1 1
California Air Resources Board NHTSA-2017-0059 1 1
California Air Resources Board NHTSA-2018-0067 1 1
California Business, Property & Resouce Association FWS-R8-ES-2012-0100 1 1
California Business,Property & Resources Association FWS-R8-ES-2012-0100 1 1
California Coastal Coalition and other signatories NOAA-NOS-2013-0091 1 1
California Wetfish Producers Association NOAA-NMFS-2019-0034 1 1
Cato Institute FTA-2010-0009 1 1
CBD, NRDC, HSUS, HSLF, Cook Inletkeeper, Defenders NOAA-NMFS-2019-0026 1 1
Center for Biological Diversity FSIS-2016-0017 1 1
Center for Biological Diversity FWS-HQ-ES-2018-0097 1 1
Center for Biological Diversity FWS-R4-ES-2012-0078 1 1
Center for Biological Diversity FWS-R5-ES-2015-0106 1 1
Center for Biological Diversity NHTSA-2011-0056 1 1
Center for Biological Diversity OSM-2010-0018 1 1
Center For Biological Diversity NHTSA-2010-0087 1 1
Center for Biological Diversity & Animal Welfare Institute FWS-R9-ES-2012-0013 1 1
Center for Biological Diversity Climate, Air, and Energy Program NHTSA-2005-22223 1 1
Center for Biological Diversity et al.  FWS-R8-ES-2010-0070 1 1
Center for Biological Diversity, Conservation Law Foundation, et. al.  NHTSA-2018-0067 1 1
Center for Biological Diversity, et. al.  NHTSA-2018-0067 1 1
Center for Biological Diversity, NRDC, HSUS, Cook Inletkeeper FWS-R7-ES-2019-0012 1 1
Center for Coalfield Justice OSM-2010-0018 1 1
Center for Progressive Reform FSIS-2011-0012 1 1
Change.org FWS-R9-ES-2012-0025 1 1
Chicago Department of Transportation FRA-1999-6439 1 1
Chief, Special Projects Section, EPA Region 6 NOAA-NMFS-2013-0070 1 1
Citizens for Noise Abatement S.A.D.Sleep-Deprived Americans Driving FRA-1999-6439 1 1
Citizens’ Environmental Coalition NRC-2012-0246 1 1
City Heights Community Development Corporation FTA-2010-0009 1 1
City of Sierra Vista, Cochise County, Coalition of AZ & NM Counties FWS-R2-ES-2010-0072 1 1
City of Thornton, CO FTA-2010-0009 1 1
Clean Ocean Action PHMSA-2012-0082 1 1
Clean Water Action PHMSA-2012-0082 1 1
Coalition of AZ/NM Counties FWS-R2-ES-2013-0056 1 1
Coalition of AZNM Counties FWS-R2-ES-2013-0056 1 1
Coaliton of Arizona/New Mexico Counties FWS-R2-ES-2010-0072 1 1
Cochise County & City of Sierra Vista, AZ FWS-R2-ES-2013-0056 1 1
Cochise County Board of Supervisors FWS-R2-ES-2010-0072 1 1
Community Streetcar Coalition FTA-2010-0009 1 1
Compassion in World Farming FSIS-2011-0012 1 1
Conservation Law Center FWS-HQ-ES-2015-0126 1 1
Consumer Federation of America EERE-2019-BT-STD-0022 1 1
Coosa-Alabama River Improvement Association and ATRC FWS-R4-ES-2008-0058 1 1
CorridorWatch.org FHWA-2008-0136 1 1
County of El Paso FMCSA-1998-3298 1 1
County of El Paso FMCSA-1998-3299 1 1
County of Los Angeles Departmentof Public Works, Water Resources Division FWS-R2-ES-2011-0053 1 1
Cultural Resource Department-Pamunkey Indian Tribe CEQ-2019-0003 1 1
Darling Environmental & Surveying, Ltd.  FWS-R2-ES-2010-0085 1 1
# number of dockets 
ejorgs_FR %>%
  count(organization, name = "dockets on which org raised EJ", sort = T) %>% 
  kablebox()
organization dockets on which org raised EJ
Center for Biological Diversity 7
Earthjustice 4
Sierra Club 4
American Public Transportation Association 3
Natural Resources Defense Council 3
The Pew Charitable Trusts 3
California Air Resources Board 2
County of El Paso 2
Defend Rural America 2
El Paso County, Texas Planning and Development Department 2
Fort McDowell Yavapai Nation 2
Greyhound Lines, Inc.  2
National Sustainable Agriculture Coalition 2
Natural Resources Defense Coucil 2
New Mexico Cattle Growers’ Association 2
Ocean Conservancy 2
Oceana 2
Reconnecting America 2
State of Connecticut Department of Transportation 2
Stewards of the Sierra National Forest 2
The Partnership Project 2
Western Mining Alliance 2
8028556 1
815 N. Broadway 1
A.D. Marble 1
AC Transit District 1
adak community development corporation 1
Agua Caliente Band of Cahuilla Indians 1
Alabama-Tombigbee Rivers Coalition 1
Alaska Oil and Gas Association 1
Aleut Enterprise, LLC 1
Alternatives for Community & Environment 1
Amador County Transportation Commission 1
American Association of State Highway and Transportation Officials 1
American Lung Association 1
American Public Health Association 1
AOGA, API and PAW 1
Apache County Natural Resource Coordinator 1
Apache County, Arizona 1
Arctic Slope Regional Corp.  1
ASPCA and Compassion Over Killing 1
ASPI 1
Attorney General of the State of California 1
AVCP, BSFA, Kawerak, TCC and YRDFA 1
Best Best & Krieger LLP 1
Bighorn County 1
Black Warrior Riverkeeper, Inc.  1
Board of Supervisors - County of Los Angeles 1
Bonner County, Idaho; Idaho State Snowmobile Association; and Pacific Legal Foundation 1
Bowlby & Associates, Inc.  1
CAH316675474 1
California Business, Property & Resouce Association 1
California Business,Property & Resources Association 1
California Coastal Coalition and other signatories 1
California Wetfish Producers Association 1
Cato Institute 1
CBD, NRDC, HSUS, HSLF, Cook Inletkeeper, Defenders 1
Center For Biological Diversity 1
Center for Biological Diversity & Animal Welfare Institute 1
Center for Biological Diversity and 117 other organizations 1
Center for Biological Diversity Climate, Air, and Energy Program 1
Center for Biological Diversity et al.  1
Center for Biological Diversity, Conservation Law Foundation, et. al.  1
Center for Biological Diversity, et. al.  1
Center for Biological Diversity, NRDC, HSUS, Cook Inletkeeper 1
Center for Coalfield Justice 1
Center for Food Safety 1
Center for Progressive Reform 1
Change.org 1
Chicago Department of Transportation 1
Chief, Special Projects Section, EPA Region 6 1
Citizens for Noise Abatement S.A.D.Sleep-Deprived Americans Driving 1
Citizens’ Environmental Coalition 1
City Heights Community Development Corporation 1
City of Sierra Vista, Cochise County, Coalition of AZ & NM Counties 1
City of Thornton, CO 1
Clean Ocean Action 1
Clean Water Action 1
Coalition of AZ/NM Counties 1
Coalition of AZNM Counties 1
Coaliton of Arizona/New Mexico Counties 1
Cochise County & City of Sierra Vista, AZ 1
Cochise County Board of Supervisors 1
Community Streetcar Coalition 1
Compassion in World Farming 1
Conservation Law Center 1
Consumer Federation of America 1
Coosa-Alabama River Improvement Association and ATRC 1
CorridorWatch.org 1
County of Los Angeles Departmentof Public Works, Water Resources Division 1
CREDO Action 1
Cultural Resource Department-Pamunkey Indian Tribe 1
Darling Environmental & Surveying, Ltd.  1
Delaware Riverkeeper Network 1
Department of Health and Human Services - Centers for Disease Control and Prevention 1
Dr.  1
E3 Committee/Statewide organizing for Community eMpowerment 1
Earthjustice, Forest Ethics, Sierra Club, NRDC, and Oil Change International 1
Eastern Arizona Counties Organization 1
Edison Electric Institute (EEI) 1
# 
# ejorgs

Proposed rules that did not address EJ

# Final Rules that where ej was not mentioned in the NPRM
ejFR_PR <- allFR %>% 
  filter(docket_id %in% allPR$docket_id, # there is an NPRM
         !ej_pr) # ej is not in it

Percent where the final rule did address EJ

#ej-PR-winrate 

winrate <- ejFR_PR %>% 
  count(ej_comment, ej_fr) %>% 
  group_by(ej_comment) %>% #FIXME make nice table with percents
  spread(ej_fr, n) %>% 
  mutate(percent = round(`TRUE`/(`TRUE`+`FALSE`)*100 ))

winrate %>% kablebox()
ej_comment FALSE TRUE percent
FALSE 11004 428 4
TRUE 193 96 33
ejFR_PR %>% 
  count(ej_comment, ej_fr) %>% 
  left_join(winrate) %>%
  group_by(ej_comment) %>% 
  mutate(mean = mean(c(`TRUE`, `FALSE`)),
        EJ_comment = ifelse(ej_comment, "EJ Raised by Commenters", "EJ not Raised by Commenters")) %>% 
  ggplot() + 
  aes(x = EJ_comment, 
      y = n, 
      fill = ej_fr, 
      label = ifelse(ej_fr == ej_comment, percent, NA) %>% str_c("%") ) +
  geom_col(alpha = .7) + 
  geom_text(aes(y = mean)) + 
  facet_wrap("EJ_comment", scales = "free") + 
  labs(fill = "EJ in Final Rule",
       y = "Proposed Rules") + 
  theme_void() +
  theme(axis.text.y = element_text(),
        axis.title.y = element_text(angle = 90),
        panel.grid.major.y = element_line(color = "grey"))

By president

#ej-PR-winrate-president

winrate <- ejFR_PR %>% 
  count(ej_comment, ej_fr, president) %>% 
  group_by(ej_comment) %>% #FIXME make nice table with percents
  spread(ej_fr, n) %>% 
    mutate(`FALSE` = replace_na(`FALSE`, 0)) %>%
  mutate(`TRUE` = replace_na(`TRUE`, 0)) %>%
  mutate(percent = round(`TRUE`/(`TRUE`+`FALSE`)*100 ))

winrate %>% kablebox()
ej_comment president FALSE TRUE percent
FALSE Clinton 79 16 17
FALSE G. W. Bush 1069 120 10
FALSE Obama 6452 184 3
FALSE Trump 3404 108 3
TRUE Clinton 2 0 0
TRUE G. W. Bush 15 20 57
TRUE Obama 109 52 32
TRUE Trump 67 24 26
ejFR_PR %>% 
  count(ej_comment, ej_fr, president) %>% 
  left_join(winrate) %>%
  group_by(ej_fr) %>% 
  mutate(EJ_comment = ifelse(ej_comment, "EJ Comments", "No EJ Comments") ) %>% 
  ggplot() + 
  aes(x = n, y = EJ_comment, 
      fill = ej_fr, 
      label = ifelse(ej_fr== ej_comment, percent, NA) %>% str_c("%") ) +
  geom_col(alpha = .7) + 
  geom_text(aes(x = `TRUE`), hjust = 0) + 
  facet_wrap("president", scales = "free")+ 
  labs(fill = "EJ in Final Rule",
       x = "Proposed Rules that Did Not Address EJ",
       y = "",
       title = "Rates of Rule Change by President") + 
  #theme_void() +
  theme(axis.text.x = element_text(angle = 30),
        panel.grid.major.y = element_blank())

Model

# ej-m-PR

m_PR <- glm(ej_fr ~ ej_comment*log(comments+1) +
              ej_comments_unique +
              president,
           data = ejFR_PR, 
             family=binomial(link="logit"))

equatiomatic::extract_eq(m_PR)

\[ \log\left[ \frac { P( \operatorname{ej\_fr} = \operatorname{TRUE} ) }{ 1 - P( \operatorname{ej\_fr} = \operatorname{TRUE} ) } \right] = \alpha + \beta_{1}(\operatorname{ej\_comment}_{\operatorname{TRUE}}) + \beta_{2}(\operatorname{log(comments\ +\ 1)}) + \beta_{3}(\operatorname{ej\_comments\_unique}) + \beta_{4}(\operatorname{president}_{\operatorname{G.\ W.\ Bush}}) + \beta_{5}(\operatorname{president}_{\operatorname{Obama}}) + \beta_{6}(\operatorname{president}_{\operatorname{Trump}}) + \beta_{7}(\operatorname{ej\_comment}_{\operatorname{TRUE}} \times \operatorname{log(comments\ +\ 1)}) \]

tidy(m_PR) %>% kablebox()
term estimate std.error statistic p.value
(Intercept) -1.823 0.284 -6.415 0.000
ej_commentTRUE 3.363 0.221 15.194 0.000
log(comments + 1) 0.068 0.028 2.431 0.015
ej_comments_unique 0.005 0.006 0.742 0.458
presidentG. W. Bush -0.448 0.295 -1.520 0.129
presidentObama -1.801 0.288 -6.250 0.000
presidentTrump -1.728 0.294 -5.869 0.000
ej_commentTRUE:log(comments + 1) -0.227 0.052 -4.387 0.000

Predicted Probabilities by President

With the median number of comments on Proposed Rules that did not address EJ, 1 comments:

# ej-m-PR-president-median

# A data frame of values at which to estimate probabilities:
values <- ejFR_PR %>% 
  expand(ej_comment,
         #ej_comments = median(ej_comments) %>% round(),
         ej_comments_unique = median(ej_comments_unique) %>% round(),
         comments = #c(min(comments),
                      median(comments) %>% round(),
                      #max(comments)),
         president)

predicted <- augment(m_PR,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     ) %>% 
  left_join(ejFR_PR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))


# As a plot
predicted %>% 
  ggplot() + 
  aes(x = EJ_comment, y = .fitted, shape = EJ_comment, color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                  ymax = .fitted + 1.96*.se.fit), alpha = .7 )  + 
  geom_hline(yintercept = 0, linetype = 2) +
  coord_flip() +
  facet_wrap("president", ncol = 1) +
  labs(y = 'Probability that "Environmental Justice"\nis Added to Final Rule', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments',
       shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted change in Final Rules") + 
  theme(axis.text.y = element_blank(),
        axis.ticks.y = element_blank(),
        panel.grid.major.y = element_blank())+
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
  ylim(0,1) 


With the mean number of comments on Proposed Rules that did not address EJ, 813 comments:

# ej-m-PR-president-mean

# A data frame of values at which to estimate probabilities:
values <- ejFR_PR %>% 
  expand(ej_comment,
         #ej_comments = median(ej_comments) %>% round(),
         ej_comments_unique = mean(ej_comments_unique) %>% round(),
         comments = #c(min(comments),
                      mean(comments) %>% round(),
                      #max(comments)),
         president)

predicted <- augment(m_PR,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     ) %>% 
  left_join(ejFR_PR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))


# As a plot
predicted %>% 
  ggplot() + 
  aes(x = EJ_comment, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                  ymax = .fitted + 1.96*.se.fit), alpha = .7 )  + 
  geom_hline(yintercept = 0, linetype = 2) +
  coord_flip() +
  facet_wrap("president", ncol = 1) +
  labs(y = 'Probability that "Environmental Justice"\nis Added to Final Rule', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', 
       shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted change in Final Rules") + 
  theme(axis.text.y = element_blank(),
        axis.ticks.y = element_blank(),
        panel.grid.major.y = element_blank())+  
  scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
  ylim(0,1)


By number of comments

# ej-m-PR-comments

# A data frame of values at which to estimate probabilities:
values <- ejFR_PR %>% 
  expand(comments =  c(1, 10,100,1000,10000),
         ej_comment,
         ej_comments_unique = median(ej_comments_unique) %>% round(),
         president = "Obama")

predicted <- augment(m_PR,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     )  %>% 
  left_join(ejFR_PR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))


# As a plot
predicted %>%
  filter(comments<10001) %>% 
  ggplot() + 
  aes(x = factor(comments), 
      y = .fitted, 
      shape = EJ_comment,
      color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                  ymax = .fitted + 1.96*.se.fit), alpha = .7 )  + 
  geom_hline(yintercept = 0, linetype = 2) +
  coord_flip() +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
#facet_wrap("ej_comment", ncol = 1) +
  labs(y = 'Probability that "Environmental Justice"\nis Added to Final Rule', 
       x = "Number of Comments",
       color = '"Environmental Justice"\nRaised by Comments',
       shape = '"Environmental Justice"\nRaised by Comments',
       title = "Predicted Change in Final Rules")  +
  theme(panel.border  = element_blank(),
        panel.grid.major.y = element_blank()) 


By Agency

The percent of rules where EJ was added

#ej-PR-winrate-agency

winrate <- ejFR_PR %>% 
  count(ej_comment, ej_fr, agency) %>% 
  group_by(ej_comment) %>% #FIXME make nice table with percents
  spread(ej_fr, n) %>% 
    mutate(`FALSE` = replace_na(`FALSE`, 0)) %>%
  mutate(`TRUE` = replace_na(`TRUE`, 0)) %>%
  mutate(percent = round(`TRUE`/(`TRUE`+`FALSE`)*100 )) %>% 
  ungroup() %>% 
  arrange(agency)

winrate %>% filter(ej_comment == F) %>% kablebox()
ej_comment agency FALSE TRUE percent
FALSE ACF 4 1 20
FALSE BIA 23 0 0
FALSE BLM 21 0 0
FALSE BOEM 4 0 0
FALSE BSEE 6 0 0
FALSE CCC 2 1 33
FALSE CMS 261 4 2
FALSE COE 47 3 6
FALSE DOD 121 1 1
FALSE DOE 32 1 3
FALSE DOT 21 0 0
FALSE EERE 227 0 0
FALSE EPA 3332 365 10
FALSE FAA 4162 0 0
FALSE FEMA 17 1 6
FALSE FHWA 10 1 9
FALSE FMCSA 19 5 21
FALSE FRA 18 8 31
FALSE FS 0 11 100
FALSE FSA 4 0 0
FALSE FSIS 33 0 0
FALSE FTA 2 0 0
FALSE FWS 370 3 1
FALSE GSA 37 1 3
FALSE HHS 6 0 0
FALSE HHSIG 0 1 100
FALSE HUD 96 0 0
FALSE NHTSA 14 0 0
FALSE NOAA 994 17 2
FALSE NRC 247 4 2
FALSE NRCS 1 0 0
FALSE OSM 88 0 0
FALSE PHMSA 33 0 0
FALSE RBS 7 0 0
FALSE RHS 14 0 0
FALSE RUS 16 0 0
FALSE TREAS 8 0 0
FALSE USCG 706 0 0
FALSE USDA 1 0 0
winrate %>% filter(ej_comment == T) %>% kablebox()
ej_comment agency FALSE TRUE percent
TRUE BLM 4 0 0
TRUE BSEE 1 0 0
TRUE CMS 11 0 0
TRUE DOE 3 0 0
TRUE DOT 4 0 0
TRUE EERE 5 0 0
TRUE EPA 70 76 52
TRUE FAA 2 0 0
TRUE FS 1 0 0
TRUE FSIS 1 1 50
TRUE FTA 0 1 100
TRUE FWS 42 5 11
TRUE HHS 1 0 0
TRUE HUD 4 0 0
TRUE NOAA 31 5 14
TRUE NRC 1 2 67
TRUE OSM 4 2 33
TRUE PHMSA 4 1 20
TRUE RUS 0 1 100
TRUE TREAS 0 1 100
TRUE USCG 4 1 20
# winrate 
ejFR_PR %>% count(agency, ej_comment, ej_fr)  %>% 
  add_count(agency) %>% 
  filter(nn > 3) %>% 
  #filter(agency == "EPA") %>%
  left_join(winrate) %>%
  group_by(ej_fr) %>% 
  mutate(EJ_comment = ifelse(ej_comment, "EJ Comments", "No EJ Comments") ) %>% 
  ggplot() + 
  aes(x = n, y = EJ_comment, 
      fill = ej_fr, 
      label = ifelse(ej_fr== ej_comment, percent, NA) %>% str_c("%") ) +
  geom_col(alpha = .7) + 
  geom_text(aes(x = `TRUE`), hjust = 0) + 
  facet_wrap("agency", scales = "free")+ 
  labs(fill = "EJ in Final Rule",
       x = "Proposed Rules that Did Not Address EJ",
       y = "",
       title = "Rates of Rule Change by Agency") + 
  theme(axis.ticks = element_blank(),
        axis.text.x = element_text(angle = 30),
        panel.grid.major.y = element_blank())

Models

m_PR_agency <- glm(ej_fr ~ ej_comment*log(comments+1) + 
                     ej_comments_unique + #TODO remove or transform 
                     president + 
                     agency,
           data = ejFR_PR, 
             family=binomial(link="logit"))

tidy(m_PR_agency) %>% kablebox()
term estimate std.error statistic p.value
(Intercept) -1.322 1.192 -1.109 0.267
ej_commentTRUE 2.414 0.240 10.053 0.000
log(comments + 1) 0.232 0.036 6.365 0.000
ej_comments_unique 0.227 0.068 3.310 0.001
presidentG. W. Bush -0.787 0.325 -2.418 0.016
presidentObama -1.372 0.322 -4.259 0.000
presidentTrump -1.297 0.327 -3.970 0.000
agencyBIA -18.809 3667.832 -0.005 0.996
agencyBLM -19.568 3140.881 -0.006 0.995
agencyBOEM -18.491 8808.579 -0.002 0.998
agencyBSEE -19.919 6137.086 -0.003 0.997
agencyCCC 1.043 1.684 0.619 0.536
agencyCMS -3.068 1.236 -2.482 0.013
agencyCOE -0.395 1.286 -0.307 0.759
agencyDOD -2.618 1.515 -1.728 0.084
agencyDOE -1.825 1.532 -1.191 0.234
agencyDOT -20.108 3242.200 -0.006 0.995
agencyEERE -18.602 1123.303 -0.017 0.987
agencyEPA 0.101 1.140 0.089 0.929
agencyFAA -18.118 273.026 -0.066 0.947
agencyFEMA -0.610 1.541 -0.396 0.692
agencyFHWA -0.959 1.560 -0.615 0.539
agencyFMCSA 0.347 1.239 0.280 0.779
agencyFRA 1.324 1.210 1.094 0.274
agencyFS 3.600 1.539 2.339 0.019
agencyFSA -18.890 8654.071 -0.002 0.998
agencyFSIS -2.221 1.550 -1.433 0.152
agencyFTA 0.690 1.760 0.392 0.695
agencyFWS -2.936 1.202 -2.443 0.015
agencyGSA -1.368 1.523 -0.898 0.369
agencyHHS -19.448 6015.671 -0.003 0.997
agencyHHSIG 21.895 17730.370 0.001 0.999
agencyHUD -87.708 937.689 -0.094 0.925
agencyNHTSA -18.579 4574.581 -0.004 0.997
agencyNOAA -2.000 1.152 -1.736 0.083
agencyNRC -1.844 1.214 -1.520 0.129
agencyNRCS -18.246 17730.370 -0.001 0.999
agencyOSM -4.381 2.001 -2.190 0.029
agencyPHMSA -2.736 1.564 -1.750 0.080
agencyRBS -18.534 6554.656 -0.003 0.998
agencyRHS -18.290 4719.503 -0.004 0.997
agencyRUS -0.885 1.551 -0.571 0.568
agencyTREAS -1.215 1.659 -0.733 0.464
agencyUSCG -4.229 1.515 -2.792 0.005
agencyUSDA -18.704 17730.370 -0.001 0.999
ej_commentTRUE:log(comments + 1) -0.226 0.072 -3.129 0.002
#  with ej_comments_unique 
m_nPR_agency <- glm(ej_fr ~ log(comments+1) + 
                     ej_comments_unique + 
                     president + 
                     agency,
           data = ejFR_PR, 
             family=binomial(link="logit"))

tidy(m_nPR_agency) %>% kablebox()
term estimate std.error statistic p.value
(Intercept) -1.631 1.191 -1.369 0.171
log(comments + 1) 0.258 0.033 7.874 0.000
ej_comments_unique 0.426 0.073 5.806 0.000
presidentG. W. Bush -0.703 0.327 -2.151 0.031
presidentObama -1.185 0.323 -3.670 0.000
presidentTrump -1.154 0.328 -3.523 0.000
agencyBIA -18.758 3637.893 -0.005 0.996
agencyBLM -20.633 3099.542 -0.007 0.995
agencyBOEM -18.421 8751.272 -0.002 0.998
agencyBSEE -20.408 6008.122 -0.003 0.997
agencyCCC 1.051 1.690 0.622 0.534
agencyCMS -3.136 1.239 -2.530 0.011
agencyCOE -0.265 1.286 -0.206 0.837
agencyDOD -2.513 1.516 -1.657 0.098
agencyDOE -1.408 1.523 -0.924 0.355
agencyDOT -19.773 3427.815 -0.006 0.995
agencyEERE -18.496 1131.753 -0.016 0.987
agencyEPA 0.374 1.141 0.328 0.743
agencyFAA -17.994 272.219 -0.066 0.947
agencyFEMA -0.468 1.542 -0.304 0.761
agencyFHWA -0.843 1.558 -0.541 0.588
agencyFMCSA 0.394 1.242 0.317 0.751
agencyFRA 1.405 1.212 1.160 0.246
agencyFS 3.581 1.541 2.324 0.020
agencyFSA -18.847 8492.475 -0.002 0.998
agencyFSIS -2.471 1.578 -1.566 0.117
agencyFTA 1.354 1.671 0.810 0.418
agencyFWS -3.224 1.216 -2.652 0.008
agencyGSA -1.268 1.523 -0.832 0.405
agencyHHS -19.712 6321.159 -0.003 0.998
agencyHHSIG 21.863 17730.370 0.001 0.999
agencyHUD -151.968 863.697 -0.176 0.860
agencyNHTSA -18.456 4567.169 -0.004 0.997
agencyNOAA -1.825 1.152 -1.584 0.113
agencyNRC -1.631 1.213 -1.344 0.179
agencyNRCS -18.166 17730.370 -0.001 0.999
agencyOSM -7.645 4.923 -1.553 0.120
agencyPHMSA -2.879 1.633 -1.763 0.078
agencyRBS -18.463 6401.653 -0.003 0.998
agencyRHS -18.192 4705.271 -0.004 0.997
agencyRUS -0.536 1.536 -0.349 0.727
agencyTREAS -1.177 1.674 -0.703 0.482
agencyUSCG -4.058 1.515 -2.679 0.007
agencyUSDA -18.676 17730.370 -0.001 0.999

Predicted Probabilies by Agency

# ej-m-PR-agency

# A data frame of values at which to estimate probabilities:
values <- ejFR_PR %>%
  expand(ej_comment,
         president = "Obama",
         ej_comments_unique = median(comments) %>% round(),
         comments = median(comments) %>% round(),
         agency)

predicted <- augment(m_PR_agency,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     )  %>% 
  left_join(ejFR_PR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))

# calculate difference in probabilities
predicted %<>% 
  group_by(agency) %>% 
  mutate(diff = abs(sum(.fitted) - .fitted - .fitted)*100) %>% 
  mutate(diff = round(diff, 0) %>% str_pad(2, side = "left", pad = "0")) %>% 
  mutate(Agency = str_c(diff, "% increase at ", agency)) %>% arrange(Agency)


# As a plot
predicted %>% 
  arrange(.fitted) %>%
  ggplot() + 
  aes(x = Agency, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                      ymax = .fitted + 1.96*.se.fit),
                  alpha = .7)  + 
  geom_hline(yintercept = 0, linetype = 2) +
  coord_flip() +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
  
#facet_wrap("agency", ncol = 1, scales = "free") +
  labs(y = 'Probability that "Environmental Justice"\nis Added to Final Rule', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted Change in Final Rules") + 
  scale_y_continuous(breaks = c(0, .5,1)) +
  theme(panel.grid.major.y = element_blank(),
        panel.border = element_blank()) +
  ylim(0,1) 

Agencies with at least 300 comments on proposed rules that did not mention environmental justice (i.e., agencies where at least some of the rules in this dataset saw comments) and at least 3 rules where comments raised EJ concerns (i.e., agencies where EJ is somewhat salient).

# ej-m-PR-agency-top

ejFR_PR %>% group_by(agency) %>% count(agency, agency_ej_comments,sum(comments) )  %>%   kablebox()
agency agency_ej_comments sum(comments) n
ACF 0 2631 5
BIA 0 3122 23
BLM 65 1211164 25
BOEM 3 103 4
BSEE 6 240468 7
CCC 0 436 3
CMS 30 1052890 276
COE 16 286 50
DOD 0 2286 122
DOE 0 541 36
DOT 13 40417 25
EERE 8 106086 232
EPA 9660 145189 3843
FAA 5 20309 4164
FEMA 0 130 18
FHWA 448 621 11
FMCSA 12 7035 24
FRA 22 302 26
FS 53 47467 12
FSA 0 1850 4
FSIS 18 87643 35
FTA 61 68 3
FWS 255 5469159 420
GSA 2 217 38
HHS 7 147586 7
HHSIG 0 357 1
HUD 674 98147 100
NHTSA 164 177 14
NOAA 79 509766 1047
NRC 114 3989 254
NRCS 2 4 1
OSM 116 306910 94
PHMSA 37 7868 38
RBS 0 1163 7
RHS 0 98 14
RUS 0 184 17
TREAS 14 673 9
USCG 23 8345 711
USDA 0 35 1
top <- ejFR_PR %>% 
  group_by(agency) %>% 
  filter(sum(comments) >=300,
         agency_ej_comments >=3) %>% 
    ungroup() %>% 
    .$agency %>% 
    unique()


# As a plot
predicted %>% 
  arrange(.fitted) %>%
  filter(agency %in% top) %>% 
  ggplot() + 
  aes(x = Agency, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                      ymax = .fitted + 1.96*.se.fit),
                  alpha = .7)  + 
  geom_hline(yintercept = 0, linetype = 2) +
  coord_flip() +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
  scale_y_continuous(breaks = c(0, .5,1)) +
labs(y = 'Probability that "Environmental Justice"\nis Added to Final Rule', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted change in Final Rules") + 
  theme(panel.grid.major.y = element_blank(),
        panel.border  = element_blank())

A more selective subset: Agencies that have at least 500 comments on proposed rules that did not mention environmental justice (i.e., agencies where at least some of the rules in this dataset saw more than a few comments) and at least 50 rules where comments raised EJ concerns (i.e., agencies where EJ is somewhat salient).

# ej-m-PR-agency-toptop

# slightly more selective, requiring 100 comments
top <- ejFR_PR %>% 
  group_by(agency) %>% 
  filter(sum(comments) >=500,
         agency_ej_comments >=50) %>% 
    ungroup() %>% 
    .$agency %>% 
    unique()


# As a plot
predicted %>% 
  arrange(.fitted) %>%
  filter(agency %in% top) %>% 
  ggplot() + 
  aes(x = Agency, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                      ymax = .fitted + 1.96*.se.fit),
                  alpha = .7)  + 
  geom_hline(yintercept = 0, linetype = 2) +
  scale_y_continuous(breaks = c(0, .5,1)) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  labs(y = 'Probability that "Environmental Justice"\nis Added to Final Rule', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted change in Final Rules") + 
  theme(panel.grid.major.y = element_blank(),
        panel.border = element_blank())

## Comments with Agency Fixed Effects

# ej-m-PR-comments-agencyFE

# A data frame of values at which to estimate probabilities:
values <- ejFR_PR %>% 
  expand(comments =  c(1, 10,100,1000,10000),
         ej_comment,
         ej_comments_unique = median(ej_comments_unique) %>% round(),
         president = "Obama",
         agency = "EPA")

predicted <- augment(m_PR_agency,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     )  %>% 
  left_join(ejFR_PR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))


# As a plot
predicted %>%
  filter(comments<10001) %>% 
  ggplot() + 
  aes(x = factor(comments), 
      y = .fitted, 
      shape = EJ_comment,
      color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                  ymax = .fitted + 1.96*.se.fit), alpha = .7 )  + 
  geom_hline(yintercept = 0, linetype = 2) +
  #scale_y_continuous(breaks = c(0, .5,1)) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  #facet_wrap("ej_comment", ncol = 1) +
  labs(y = 'Probability that "Environmental Justice"\nis Added to Final Rule', 
       x = "Number of Comments",
       color = '"Environmental Justice"\nRaised by Comments',
       shape = '"Environmental Justice"\nRaised by Comments',
       title = "Predicted Change in Final Rules")  +
  theme(panel.border  = element_blank(),
        panel.grid.major.y = element_blank()) 


Example dockets

Rules where the proposed rule did not address EJ, but comments did, and the Final Rule did.

EPA-R09-OAR-2010-0120 Revisions to California State Implementation Plans: Imperial County Air Pollution Control District:

“EPA agrees it is important to consider environmental justice in our actions and we briefly addressed environmental justice principles in our proposal TSD. (171) …”

BUT “Environmental Justice” does not appear in the PR, and THERE IS NO OTHER TECHNICAL SUPPORTING DOCUMENT ON REGULATIONS.GOV. FOOTNOTE 171 REFERENCES THE PROPOSED RULE.

This action will not have disproportionately high and adverse human health or environmental effects on minority, low-income or Tribal populations because it increases the level of environmental protection for all affected populations without having any disproportionately high and adverse human health or environmental effects on any population, including any minority or low-income population. Specially, EPA’s limited approval and limited disapproval of Regulation VIII would have the affect of strengthening environmental requirements throughout ICAPCD, and would not relax environmental requirements in any area. Thus it promotes environmental justice by increasing the level of human health and environmental protection for an area where, as the commenters note, relatively large portions of the population are low income and/or minority."


EPA-R05-OAR-2007-0587 Final Approval of the Wisconsin NOx RACT Rules (NR 428)

“The commenter also states that multi facility averaging threatens environmental justice.”


EPA-R05-OAR-2010-0034 Final Approval of PM 2.5 Clean Data Determination for Saint Louis:

“significant source of PM2.5 emissions in the Saint Louis area, and that the plant’s operations raise environmental justice concerns. EPA reviewed air quality data throughout the Saint Louis area, including environmental justice areas.”

EPA-HQ-OAR-2003-0048 National Emission Standards for Hazardous Air Pollutants: Plywood and Composite Wood Products
> The rule also does not involve special consideration of environmental justice related issues as required by E.O. 12898."


EPA-HQ-OAR-2004-0094 National Emission Standards for Hazardous Air Pollutants: General Provisions Impacts

Comment: One commenter stated that EPA failed to comply with Executive Order 12898 on Environmental Justice. The commenter asserts that the amendments will adversely affect minority and low income communities around the sources.

Response: Executive Order 12898 establishes a Federal policy for incorporating environmental justice into Federal agency actions by directing agencies to identify and address, as appropriate, disproportionately high and adverse human health or environmental effects of their programs, policies and activities on minority and low-income populations. The EPA has considered the impact of the proposal on minority and low income populations. We do not believe that these amendments will have any adverse effects on emissions during periods of SSM. Therefore, there should not be any adverse impact on minority and low income populations as a result of these amendments. The amendments do not affect the underlying requirement to minimize emissions during SSM events. Owners or operators are still required to develop SSM plans to address emissions during these periods. They are required to report immediately when the plans are not followed and semiannually when the plans are followed and emission limitations are exceeded (or could have been in the case of malfunctions) and describe steps taken to minimize emissions. The only difference from current regulations is that the source is not required to follow the plan, especially when the situation may call for other action or when safety considerations override following the plan as written.


Enhancements to Emergency Preparedness Regulations NRC-2008-0122

The NRC requested public comments on any environmental justice considerations that may be related to this rule and no comments were received.

BUT, a comment by Richard Webster & Manna Jo Greene on Behalf of Hudson River Sloop Clearwater, Inc. did address EJ:

The rules and guidance are based on a fantasy world in which the terrain around nuclear power stations is perfectly flat, radiation plumes do not move up and down, the wind blows at the same speed in a constant direction throughout an accident, and most people follow the instructions they are given about the need to evacuate.

Need for Site-Specific Analysis of Transport Dependent Populations: The present guidance suggests that because 50% of residents would offer rides to those in need, approximately 50% of the transit dependent population in the EPZ would rideshare. Criteria for Development of ETE Studies (April23, 2009) at 13. This assumption fails to account for the likely separation of transit dependent environmental justice populations from more affluent populations. Furthermore, it takes no account of attitudes towards race and potential reluctance of whites to offer rides to African- Americans. Instead of presuming that 50% of the transit dependent population will ride- share, the presumption should be that only a small percentage will rideshare unless the licensee can show that there are no geographical concentrations of transit dependent populations and that there is no racial or sociological bias with regard to ridesharing.

…people would be foolish to follow the directions of first responders if they are based on totally unrealistic modeling. Indeed, it is doubtful whether people would follow instructions even if they were based on the best predictions possible. The experiences during the hurricane Katrina also underline that it is even more doubtful whether the response planned for environmental justice communities would actually materialize.


Atlantic Highly Migratory Species: Atlantic Shark Management Measures; Final Amendment 5b NOAA-NMFS-2013-0070

We received a total of 76 individual written comments on the proposed rule from fishermen, states, and other interested parties during the public comment period, including one comment from EarthJustice that included signatures from 19,716 individuals and another comment from Oceana that included signatures from 13,144 individuals.

The EPA submitted a comment recommending additional environmental justice information…and include in the EIS whether the proposed alternatives have any potential for disproportionate adverse impacts to minority and low-income populations. The EPA also recommended that the EIS include the approaches used to foster public participation by these populations and describe outreach conducted to all other communities that could be affected by the project, because rural communities may be among the most vulnerable to health risks associated with the project.

NMFS appreciates these recommendations from the EPA and has added additional information in the environmental justice discussion in Section 9.4 of the FEIS.

Between the time of the proposed rule in 2013 and the final Rule and Final Environmental Impact Statement (FEIS) in 2017,

Executive Order 12898 requires agencies to identify and address disproportionately high and adverse environmental effects of its regulations on minority and low-income populations. To determine whether environmental justice concerns exist, the demographics of the affected area should be examined to ascertain whether minority populations and low-income populations are present. If so, a determination must be made as to whether implementation of the alternatives may cause disproportionately high and adverse human health or environmental effects on these populations. Community profile information are available in the 2006 Consolidated HMS FMP (Chapter 9), a recent report by MRAG Americas, and Jepson (2008) titled “Updated Profiles for HMS Dependent Fishing Communities” (Appendix E of Amendment 2 to the 2006 Consolidated HMS FMP), and in the 2015 HMS SAFE Report. The MRAG report updated community profiles presented in the 2006 Consolidated HMS FMP, and provided new social impacts assessments for HMS fishing communities along the Atlantic and Gulf of Mexico coasts. The 2011 and 2012 SAFE Reports (NMFS 2011 and NMFS 2012) include updated census data for all coastal Atlantic states, and some selected communities that are known centers of HMS fishing, processing or dealer activity. Demographic data indicate that coastal counties with fishing 9-9 communities are variable in terms of social indicators like income, employment, and race and ethnic composition. The preferred alternatives were selected to minimize ecological and economic impacts and provide for the sustained participation of fishing communities. The preferred alternatives would not have any effects on human health nor are they expected to have any disproportionate social or economic effects on minority and low-income communities.

They also cited research published in the same year as the draft rule:

Jepson and Colburn (2013) developed social indicators of vulnerability and resilience for 25 communities in the U.S. southeast and northeast regions selected for having a greater than average number of HMS permits associated with them.


Fisheries of the Exclusive Economic Zone Off Alaska: Chinook Salmon Bycatch Management in Bering Sea Pollock Fishery NOAA-NMFS-2010-0032

Comment 79: NOAA has the responsibility to modify the Council’s recommendations to fulfill Federal obligations under ANILCA, ESA, Pacific Salmon Treaty, Environmental Justice, and Federal responsibility to tribal governments. NOAA should fulfill these obligations by not implementing Amendment 91 and insisting on the smaller bycatch rates proposed and supported by the most directly impacted communities.

Response: NMFS has complied with all applicable laws, Executive Orders, and international obligations in approving and implementing Amendment 91, as documented in the EIS and ROD (see ADDRESSES).

Comment 96: Subsistence users of the Yukon River, the vast majority of whom are Alaska Native and have the lowest per capita income in the United States, are clearly bearing a disproportionately high adverse environmental impact under Amendment 91. Under the concept of Environmental Justice, why does Amendment 91 result in tribal subsistence users bearing virtually all of the consequences resulting from past, present, and future wasteful bycatch by the pollock fleet? This violates all measures of fairness and fails to satisfy any consideration of environmental justice. The pollock fleet can best afford to make sacrifices in order to accomplish meaningful reductions in Chinook salmon bycatch.

Response: NMFS acknowledges the comment. The EIS prepared for this action analyzes the environmental justice impacts of this action (see ADDRESSES).


EPA-R05-OAR-2020-0055 Removal of Ohio Nuisance Provision (3745-15-07) final rule

OAC 3745-15-07 [Ohio State Law] prohibits the “emission or escape into the open air from any source or sources whatsoever, of smoke, ashes, dust, dirt, grime, acids, fumes, gases, vapors, odors, or any other substances or combinations of substances, in such manner or in such amounts as to endanger the health, safety or welfare of the public, or cause unreasonable injury or damage to property.”

On March 23, 2020, EPA proposed, under the authority of section 110(k)(6) of the CAA, to remove Ohio’s nuisance rule from the Ohio State Implementation Plan (SIP) because it does not have a reasonable connection to the attainment and maintenance of the national ambient air quality standard (NAAQS) and EPA erred in approving it as part of the Ohio SIP.

Comment 10: Commenters state that the NPRM would harm already vulnerable Ohioans by eliminating an important environmental justice tool. Commenters also raise concerns with the potential impact on other sensitive populations such as children, the elderly, and individuals with various health issues, including respiratory illnesses.

Response: The purpose of this rulemaking action is to remove OAC 3745-15-07 from the Ohio SIP because it is not related to the implementation, maintenance, and enforcement of the NAAQS. This rulemaking action does not invalidate the Ohio law or affect its applicability to Ohio sources. Facilities located in Ohio are still subject to the state nuisance rule. EPA supports programs and activities that promote enforcement of health and environmental statutes in areas with minority populations and low-income populations and the protection of children, the elderly, and other vulnerable populations.

top_dockets <- ejFR_PR %>%
  filter(agency %in% c(top, "HUD", "FRA", "DHS", "DOJ", "ED", "DOS", "BIA", "USCBP", "OSHA", "RUS" ),
         ej_fr, # ej added 
         ej_comment) %>% # with ej comments  
  select(docket_id, docket_title) %>% 
  distinct() %>% 
  pull(docket_id)

rules %>% 
  filter(docket_id %in% top_dockets) %>% 
  distinct(docket_id, docket_title, comments, ej_comments_unique) %>%  
  distinct() %>% 
  arrange(rev(docket_id)) %>% 
  kablebox()
docket_id docket_title ej_comments_unique comments
RUS-18-AGENCY-0005 Rural Development Environmental Regulation for Rural Infrastructure Projects 0 16
OSM-2010-0018 Stream Protection Rule 28 94333
NRC-2010-0075 Licenses, Certifications, and Approvals for Material Licensees 0 9
NRC-2008-0122 Emergency Preparedness 0 70
NOAA-NMFS-2015-0107 Designation of Critical Habitat for the Gulf of Maine, New York Bight, and Chesapeake Bay Distinct Population Segments of Atlantic Sturgeon 0 1577
NOAA-NMFS-2013-0070 Atlantic Highly Migratory Species; Atlantic Shark Management Measures; Proposed Amendment 5b 0 45
NOAA-NMFS-2010-0032 Fisheries of the Exclusive Economic Zone Off Alaska; Chinook Salmon Bycatch Management in the Bering Sea Pollock Fishery 2 41
NOAA-NMFS-2008-0223 Amendment 29 to the Fishery Management Plan for Reef Fish Resources of the Gulf of Mexico - Effort Management in the Commercial Grouper and Tilefish Fisheries 2 157
FWS-R2-ES-2013-0056 Proposed Revision to the Nonessential Experimental Population of the Mexican Wolf 22 59314
FWS-R4-ES-2008-0058 Designation of Critical Habitat for the Alabama Sturgeon 3 20
FWS-R2-ES-2013-0014 Designation of Critical Habitat for New Mexico Meadow Jumping Mouse 0 48
FWS-R2-ES-2012-0042 Designtion of Critical Habitat for Jaguar 0 33283
FWS-R2-ES-2010-0072 Spikedace and Loach Minnow 9 49
EPA-R10-OAR-2018-0766 Air Plan Approval; Idaho: Infrastructure Requirements for the 2015 Ozone Standard 0 3
EPA-R10-OAR-2017-0745 Air Plan Approval; Alaska; Interstate Transport Requirements for the 2012 PM2.5 NAAQS 0 2
EPA-R09-OAR-2019-0318 San Joaquin Valley PM2.5 Plan 2 6
EPA-R09-OAR-2011-0571 SIP Revision - Proposed Approval and Interim Final to SJV APCD Rule 3170, submitted June 14, 2011 0 23
EPA-R09-OAR-2010-0120 Notice of Proposed Rulemaking limited approval/disapproval for Imperial County APCD Regulation VIII including Rules 800-806. 6 137
EPA-R09-OAR-2006-0185 Source Specific Federal Implementation Plan for Navajo Generating Station; Navajo Nation 3 34
EPA-R09-OAR-2006-0184 Source specific Federal Implementation Plan for Four Corners Power Plant; Navajo Nation; proposed rule. 3 36
EPA-R08-OAR-2015-0042 Approval and Promulgation of Air Quality Implementation Plans; State of Colorado; Second Ten-Year PM10 Maintenance Plan for Lamar. 0 1
EPA-R08-OAR-2012-0479 Approval and Promulgation of Federal Implementation Plan for Oil and Natural Gas Well Production Facilities; Fort Berthold Indian Reservation (Mandan, Hidatsa, and Arikara Nations), North Dakota 3 12
EPA-R06-OAR-2019-0213 TX216 Texas Dallas-Fort Worth Redesignation Request and Maintenance Plan for the One-Hour Nonattainment Area and Second Ten-Year Maintenance Plan for the 1997 Eight-Hour Ozone Nonattainment Area State Implementation Plan, Texas Project No. 2018-028-SIP-NR, submitted to EPA March 29, 2019 (TX-421, SIP, z459) 0 2
EPA-R06-OAR-2018-0770 TX212 Texas Startup, Shutdown and Malfunction petition 4 28
EPA-R06-OAR-2018-0715 TX210 Texas Houston-Galveston-Brazoria Redesignation Request and Maintenance Plan State Implementation Plan for the One-Hour and 1997 Eight-Hour Ozone National Ambient Air Quality Standard 0 6
EPA-R06-OAR-2018-0177 NM078 New Mexico Albuquerque/Bernalillo County new 20.11.39 (Part 39), Permit Waivers and Air Quality Notifications for Certain Source Categories, and related amendments to 20.11.41 NMAC (Part 41), Construction Permits, submitted to EPA January 18, 2018 (NM-152) 0 12
EPA-R06-OAR-2017-0055 TX194 Texas; Reasonably Available Control Technology in the Houston-Galveston-Brazoria Ozone Nonattainment Area 0 3
EPA-R06-OAR-2013-0808 TX155 Texas Prevention of Significant Deterioration–Greenhouse Gas Tailoring Rule Revisions 0 12
EPA-R06-OAR-2013-0542 TX153 Texas Revisions to the New Source Review State Implementation Plan; Flexible Permit Program 2 5
EPA-R06-OAR-2010-0612 TX109 Texas Public Participation Requirements for Air Quality Permit Applications 0 7
EPA-R06-OAR-2006-0132 TX044 Texas Revisions to 30 TAC Chapter 101, General Air Quality Rules, for Emissions Events, submitted to EPA January 23, 2006 (TX-215, G-80, GF3) 4 25
EPA-R05-OAR-2020-0055 110 (k)(6) Removal of Ohio Nuisance Provision (3745-15-07) 3 211
EPA-R05-OAR-2014-0503 Minnesota Infrastructure SIPs submittal (2008 03, 2010 N02 and S02, and 2012 PM 2.5) 0 1
EPA-R05-OAR-2012-0567 Indiana PM2.5 NSR (Revisions to 326 IAC 2) 0 2
EPA-R05-OAR-2010-0034 PM 2.5 Clean Data Determination for Saint Louis 0 1
EPA-R05-OAR-2007-0587 Wisconsin NOx RACT Rules – NR 428 0 4
EPA-R04-OAR-2015-0275 North Carolina, Charlotte-Rock Hill, 2008 8-Hour Ozone Redesignation Request 0 2
EPA-R04-OAR-2013-0272 Jefferson County portion of the Kentucky SIP: Miscellaneous SIP Revision 2 4
EPA-R04-OAR-2005-GA-0005 Nuisance Provision Removal 110(k)(6) 0 9
EPA-R03-OAR-2020-0189 Pennsylvania; Reasonably Available Control Technology (RACT) Determinations for Case-by-Case Sources under the 1997 and 2008 8-Hour Ozone National Ambient Air Quality Standards 0 7
EPA-R03-OAR-2014-0884 Maryland - Determination of Attainment of hte 2008 8-Hour Ozone NAAQS for the Baltimore, MD Moderate Nonattainment Area 0 2
EPA-R01-OAR-2015-0351 Approval of State Implementation Plan Revision for Massachusetts Stage II Vapor Recovery Program Discontinuation. 0 1
EPA-R01-OAR-2013-0786 Approval and Promulgation of Implementation Plan; Massachusetts; Amendments to the Massachusetts Transit System Improvement Regulations 310 CMR 7.36. 7 41
EPA-HQ-SFUND-2008-0584 National Priorities List, Notice of Proposed Rulemaking; U.S. Magnesium 0 359
EPA-HQ-SFUND-2008-0580 National Priorities List, Notice of Proposed Rulemaking; Behr Dayton Thermal System VOC Plume 0 31
EPA-HQ-SFUND-2008-0577 National Priorities List, Notice of Proposed Rulemaking; U.S. Smelter and Lead Refinery, Inc.  0 2
EPA-HQ-SFUND-2003-0009 National Priorities List for Uncontrolled Hazardous Waste Sites; Proposed Rule No.39 2 0
EPA-HQ-RCRA-2012-0121 Improvements to the Hazardous Generator Regulatory Program (Parts 261, 262, 264 and 265) 0 237
EPA-HQ-RCRA-2003-0005 Comprehensive Procurement Guideline V (5) for Procurement of Products Containing Recovered Materials; Proposed Rule 4 390
EPA-HQ-RCRA-2003-0004 Hazardous Waste Management System: Identification and Listing of Hazardous Waste: Conditional Exclusions From Hazardous Waste and Solid Waste for Solvent-Contaminated Wipes 4 254
EPA-HQ-OW-2015-0372 Kentucky Underground Injection Control (UIC) Program; Primacy Approval 0 3
EPA-HQ-OW-2006-0141 National Pollutant Discharge Elimination System (NPDES) Water Transfers Rule 4 18776
EPA-HQ-OW-2003-0063 Final Rule on Application of Pesticides to Waters of the United States in Compliance with FIFRA 0 0
EPA-HQ-OW-2002-0039 National Primary Drinking Water Regulations: Long Term 2 Enhanced Surface Water Treatment Rule. 0 0
EPA-HQ-OAR-2018-0170 Response to CAA Section 126(b) Petition From New York 2 45
EPA-HQ-OAR-2017-0548 Air Quality Designations and Classifications for the 2015 Ozone Standards 5 499
EPA-HQ-OAR-2012-0918 Air Quality Designations for the 2012 PM2.5 Standards 0 20
EPA-HQ-OAR-2012-0233 Air Quality Designations and Classifications for the 2010 SO2 Standards 2 39
EPA-HQ-OAR-2008-0476 Air Quality Designations and Classifications for the 2008 Ozone Standards 2 1
EPA-HQ-OAR-2008-0476 Air Quality Designations and Classifications for the 2008 Ozone Standards 2 1
EPA-HQ-OAR-2006-0699 Standards of Performance for Equipment Leaks of VOC in the Synthetic Organic Chemicals Manufacturing Industry; Standards of Performance for Equipment Leaks of VOC in Petroleum Refineries 0 19
EPA-HQ-OAR-2005-0155 National Perchloroethylene Air Emission Standards for Dry Cleaning Facilities 7 12416
EPA-HQ-OAR-2004-0094 National Emission Standards for Hazardous Air Pollutants (NESHAP); General Provisions: Amendments 0 68
EPA-HQ-OAR-2004-0087 Proposed Revisions to Federal Operating Permits Program and New Source Review: Flexible Air Permits 3 44
EPA-HQ-OAR-2003-0190 Control of Emissions from New Locomotive Engines and New Marine Compression-ignition Engines less than 30-liters per Cylinder 3 23349
EPA-HQ-OAR-2003-0138 National Emission Standards for Hazardous Air Pollutants: Organic Liquids Distribution (Non-Gasoline) 0 8
EPA-HQ-OAR-2003-0048 NESHAP: Plywood and Composite Wood Products 0 0
EPA-HQ-OAR-2002-0056 National Emission Standards for Hazardous Air Pollutants for Utility Air Toxics; Clean Air Mercury Rule (CAMR) 26 9816
# final rule text where the pr did not address ej
ejFR %>% 
  filter(docket_id %in% ejFR_PR$docket_id,
         docket_id %in% ejcomments$docket_id) %>% # EJ not in PR
  distinct(docket_id, title, summary) %>% 
  arrange(desc(docket_id)) %>% 
  kablebox()
title docket_id summary
Safety Zones; Ice Covered Waterways in the Fifth Coast Guard District USCG-2015-0051 details of the obvious cultural and social impacts to recreational activities on the water, environmental justice, and economic impacts of alternatives to the proposed rule. </td> </tr> <tr> <td style="text-align:left;"> Gulf Coast Restoration Trust Fund </td> <td style="text-align:left;"> TREAS-DO-2013-0005 </td> <td style="text-align:left;"> A third comment encouraged NOAA to engage with underserved, environmental justice populations by working NOAA plans to connect, as appropriate, with community organizations serving underserved and environmental justice populations in a manner that aligns with the Commerce Department s environmental justice strategy Another comment requested that the Centers engage with underserved, environmental justice populations </td> </tr> <tr> <td style="text-align:left;"> Rural Development Environmental Regulation for Rural Infrastructure </td> <td style="text-align:left;"> RUS-18-AGENCY-0005 </td> <td style="text-align:left;"> Policy Center, Environmental Information Protection Center, Grand Canyon Trust, House Citizens for Environmental Justice, International Fund for Animal Welfare, Klamath Forest Alliance, Natural Resources Defense </td> </tr> <tr> <td style="text-align:left;"> Hazardous Materials: Enhanced Tank Car Standards and Operational Controls for High-Hazard Flammable Trains </td> <td style="text-align:left;"> PHMSA-2012-0082 </td> <td style="text-align:left;"> Environmental Justice and Other Environmental Factors Commenters, such as ADM, Clean Water Action Pennsylvania, and Earthjustice commented that an Environmental Justice EJ assessment should be included </td> </tr> <tr> <td style="text-align:left;"> Stream Protection Rule </td> <td style="text-align:left;"> OSM-2010-0018 </td> <td style="text-align:left;"> Executive Order 12988 Civil Justice Reform Executive Order 12898,Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations February 11, 1994 , requires federal We provide this analysis in the final EIS for the final rule in the Environmental Justice discussion
Licenses, Certifications, and Approvals for Materials Licensees NRC-2010-0075 following site preparation activities that requires that an EIS be prepared, then the NRC will evaluate environmental justice issues in the EIS in accordance with the guidance provided in the NRC s Policy Statement on the Treatment of Environmental Justice Matters in NRC Regulatory and Licensing Actions. 69 FR Under this scenario, when evaluating environmental justice issues in the EIS, the NRC would then consider </td> </tr> <tr> <td style="text-align:left;"> Enhancements to Emergency Preparedness Regulations </td> <td style="text-align:left;"> NRC-2008-0122 </td> <td style="text-align:left;"> The NRC requested public comments on any environmental justice considerations that may be related to </td> </tr> <tr> <td style="text-align:left;"> Endangered and Threatened Species: Designation of Critical Habitat for Endangered New York Bight, Chesapeake Bay, Carolina and South Atlantic Distinct Population Segments of Atlantic Sturgeon and Threatened Gulf of Maine Distinct Population Segment of Atlantic Sturgeon </td> <td style="text-align:left;"> NOAA-NMFS-2015-0107 </td> <td style="text-align:left;"> Environmental Justice Executive Order 12898 The designation of critical habitat is not expected </td> </tr> <tr> <td style="text-align:left;"> Atlantic Highly Migratory Species: Atlantic Shark Management Measures; Final Amendment 5b </td> <td style="text-align:left;"> NOAA-NMFS-2013-0070 </td> <td style="text-align:left;"> Comment 14 The EPA submitted a comment recommending additional environmental justice information in Specifically, the EPA recommended that NMFS include the evaluation of environmental justice populations Response NMFS appreciates these recommendations from the EPA and has added additional information in the environmental justice discussion in Section 9.4 of the FEIS. </td> </tr> <tr> <td style="text-align:left;"> Fisheries of the Exclusive Economic Zone Off Alaska: Chinook Salmon Bycatch Management in Bering Sea Pollock Fishery </td> <td style="text-align:left;"> NOAA-NMFS-2010-0032 </td> <td style="text-align:left;"> Council s recommendations to fulfill Federal obligations under ANILCA, ESA, Pacific Salmon Treaty, Environmental Justice, and Federal responsibility to tribal governments. Under the concept of Environmental Justice, why does Amendment 91 result in tribal subsistence users This violates all measures of fairness and fails to satisfy any consideration of environmental justice The EIS prepared for this action analyzes the environmental justice impacts of this action see ADDRESSES </td> </tr> <tr> <td style="text-align:left;"> Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico (Amendment 29) </td> <td style="text-align:left;"> NOAA-NMFS-2008-0223 </td> <td style="text-align:left;"> Similarly, allocation by a resource rental system could encounter environmental justice issues and discriminate </td> </tr> <tr> <td style="text-align:left;"> Designation of Critical Habitat for Alabama Stur geon (Scaphirhynchus suttkusi); Final Rule </td> <td style="text-align:left;"> FWS-R4-ES-2008-0058 </td> <td style="text-align:left;"> Designation would therefore violate the Council of Environmental Justice s definition of environmental justice, in addition to imposing permanent economic impacts from which the region will never be able </td> </tr> <tr> <td style="text-align:left;"> Endangered and Threatened Wildlife and Plants: Mexican Wolf; Nonessential Experimental Population; Revisions </td> <td style="text-align:left;"> FWS-R2-ES-2013-0056 </td> <td style="text-align:left;"> wolves within the economic analyses associated with the EIS pursuant to the NEPA process, including an environmental justice analysis to consider impacts to Native American tribes. </td> </tr> <tr> <td style="text-align:left;"> Endangered and Threatened Wildlife and Plants: New Mexico Meadow Jumping Mouse; Designation of Critical Habitat </td> <td style="text-align:left;"> FWS-R2-ES-2013-0014 </td> <td style="text-align:left;"> Multiple factors, including significance of impacts, controversy, regulatory takings implications, and environmental justice, indicate that an environmental impact statement is required under NEPA. reconstruction, development, energy resources, recreation, cultural or historic resources, socioeconomics, and environmental justice. </td> </tr> <tr> <td style="text-align:left;"> Endangered and Threatened Wildlife and Plants: Jaguar; Critical Habitat Designation </td> <td style="text-align:left;"> FWS-R2-ES-2012-0042 </td> <td style="text-align:left;"> infrastructure, residential ; tribal trust resources; soils; recreation and hunting; socioeconomics; environmental justice; Page 12620 mining and minerals extraction; and National security. residential ; tribal trust resources; soils; recreation and Page 12650 hunting; socioeconomics; environmental justice; mining and minerals extraction; and National security. </td> </tr> <tr> <td style="text-align:left;"> Endangered and Threatened Wildlife and Plants: Endangered Status and Designations of Critical Habitat for Spikedace and Loach Minnow </td> <td style="text-align:left;"> FWS-R2-ES-2010-0072 </td> <td style="text-align:left;"> Tribal socioeconomics, tribal Trust resources, and tribal environmental justice may incur additional and management, Wildland fire management, recreation, socioeconomics, tribal trust resources, and environmental justice. </td> </tr> <tr> <td style="text-align:left;"> Environmental Impact and Related Procedures </td> <td style="text-align:left;"> FTA-2011-0056 </td> <td style="text-align:left;"> concern about the effect of the new rule on projects that might affect stormwater runoff, noise, or environmental justice. consultation under the National Historic Preservation Act or compliance with Executive Order 12898 on Environmental Justice that still must be met regardless of the CE type used. </td> </tr> <tr> <td style="text-align:left;"> Modernization of Poultry Slaughter Inspection </td> <td style="text-align:left;"> FSIS-2011-0012 </td> <td style="text-align:left;"> Environmental Justice 3. Small Business Considerations 4. Implementation Costs IV. Environmental Justice Comment Several comments from human and worker rights advocacy organizations </td> </tr> <tr> <td style="text-align:left;"> Air Quality State Implementation Plans; Approvals and Promulgations: Idaho: Infrastructure Requirements for the 2015 Ozone Standard </td> <td style="text-align:left;"> EPA-R10-OAR-2018-0766 </td> <td style="text-align:left;"> ICL also stated that Pocatello particularly needs a dedicated ozone monitor because the EPA s Environmental Justice Screening and Mapping tool, EJSCREEN, shows that the city of Pocatello is in the 90th percentile \4\ EJSCREEN is an environmental justice mapping and screening tool that provides the EPA with </td> </tr> <tr> <td style="text-align:left;"> Air Quality State Implementation Plans; Approvals and Promulgations: Alaska; Interstate Transport Requirements for 2012 Fine Particulate Matter National Ambient Air Quality Standard </td> <td style="text-align:left;"> EPA-R10-OAR-2017-0745 </td> <td style="text-align:left;"> anonymous commenter suggested additional areas for EPA research, primarily regarding PM2.5 impacts on environmental justice communities, but was overall supportive of our proposed approval. </td> </tr> <tr> <td style="text-align:left;"> Air Quality State Implementation Plans; Approvals and Promulgations: California; San Joaquin Valley 2006 Fine Particulate Matter Nonattainment Area Requirements </td> <td style="text-align:left;"> EPA-R09-OAR-2019-0318 </td> <td style="text-align:left;"> Parks Conservation Association NPCA and Nayamin Martinez, Executive Director, Central California Environmental Justice Network CCEJN to Rory Mays, EPA; and letter received April 15, 2020, from Catherina Garoupa NPCA, Earthjustice, Central Valley Air Quality Coalition, Coalition for Clean Air, Central Valley Environmental Justice Network, The Climate Center, and Central Valley Asthma Collaborative collectivelyNPCA
Revisions to California State Implementation Plan: San Joaquin Valley Unified Air Pollution Control District EPA-R09-OAR-2011-0571 Response In response to the comment on environmental justice, this action does not provide EPA with the impacts of air pollution on public health and the environment in disproportionately impacted environmental justice communities in the San Joaquin Valley.
Revisions to California State Implementation Plans: Imperial County Air Pollution Control District EPA-R09-OAR-2010-0120 Response EPA agrees it is important to consider environmental justice in our actions and we briefly 16, 1994 establishes Federal executive policy on environmental justice. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice The Executive Order has informed the development and implementation of EPA s environmental justice </td> </tr> <tr> <td style="text-align:left;"> Source-Specific Federal Implementation Plan: Navajo Generating Station; Navajo Nation </td> <td style="text-align:left;"> EPA-R09-OAR-2006-0185 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 , establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Source-Specific Federal Implementation Plan for Four Corners Power Plant; Navajo Nation </td> <td style="text-align:left;"> EPA-R09-OAR-2006-0184 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 , establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Air Quality State Implementation Plans; Approvals and Promulgations: Colorado; Second Ten-Year PM10 Maintenance Plan for Lamar </td> <td style="text-align:left;"> EPA-R08-OAR-2015-0042 </td> <td style="text-align:left;"> In doing so, the EPA is failing to provide environmental justice for people in rural areas, by failing </td> </tr> <tr> <td style="text-align:left;"> Approvals and Promulgations of Federal Implementation Plans for Oil and Natural Gas Well Production Facilities: Fort Berthold Indian Reservation, ND </td> <td style="text-align:left;"> EPA-R08-OAR-2012-0479 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 , establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high Environmental Protection Agency, Region 8 Office of Enforcement, Compliance &amp; Environmental Justice, </td> </tr> <tr> <td style="text-align:left;"> Federal Implementation Plans for Oil and Natural Gas Well Production Facilities; Approvals and Promulgations: Fort Berthold Indian Reservation (Mandan, Hidatsa, and Arikara Nation), ND </td> <td style="text-align:left;"> EPA-R08-OAR-2012-0479 </td> <td style="text-align:left;"> Environmental justice is one of the Agency s highest priorities and we believe the process used in EPA defines environmental justice as providing fair treatment and meaningful participation in environmental The EPA s Action Development Process, Interim Guidance for Considering Environmental Justice during Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Environmental Protection Agency, Region 8 Office of Enforcement, Compliance &amp; Environmental Justice, </td> </tr> <tr> <td style="text-align:left;"> TX216.13 Air Quality State Implementation Plans, Approvals and Promulgations; and Designation of Areas for Air Quality Planning Purposes: Texas; Dallas-Fort Worth Area Redesignation and Maintenance Plan for Revoked Ozone National Ambient Air Quality Standards, 40 CFR Parts 52 and 81, Final rule, 14 pages. </td> <td style="text-align:left;"> EPA-R06-OAR-2019-0213 </td> <td style="text-align:left;"> Earthjustice states that, in addition to the environmental justice concerns relevant to the review With respect to the commenter s concern that EPA has not adequately addressed environmental justice, </td> </tr> <tr> <td style="text-align:left;"> TX212.38 Withdrawal of Finding of Substantial Inadequacy of Implementation Plan and of Call for Texas State Implementation Plan Revision - Affirmative Defense Provisions, Final action, 15 pages. </td> <td style="text-align:left;"> EPA-R06-OAR-2018-0770 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and </td> </tr> <tr> <td style="text-align:left;"> TX210.16 Air Quality State Implementation Plans; Approvals and Promulgations and Designation of Areas for Air Quality Planning Purposes: Texas; Houston-Galveston-Brazoria Area Redesignation and Maintenance Plan for Revoked Ozone National Ambient Air Quality Standards; Section 185 Fee Program, Final rule, 18 pages. </td> <td style="text-align:left;"> EPA-R06-OAR-2018-0715 </td> <td style="text-align:left;"> Earthjustice states that, in addition to the environmental justice concerns relevant to the review With respect to the commenter s concern that EPA has not adequately addressed environmental justice, Earthjustice also commented that VOC and NOX baseline aggregation creates serious environmental justice </td> </tr> <tr> <td style="text-align:left;"> NM078.22 Air Quality State Implementation Plans; Approvals and Promulgations: New Mexico; City of Albuquerque-Bernalillo County; New Source Review (NSR) Preconstruction Permitting Program, Final rule, 7 pages </td> <td style="text-align:left;"> EPA-R06-OAR-2018-0177 </td> <td style="text-align:left;"> this area that is subjected to the worst air quality in the city and does not take into consideration environmental justice principles. </td> </tr> <tr> <td style="text-align:left;"> TX194.09 Air Quality State Implementation Plans; Approvals and Promulgations: Texas; Reasonably Available Control Technology in the Houston-Galveston-Brazoria Ozone Nonattainment Area, Final rule, 7 pages. </td> <td style="text-align:left;"> EPA-R06-OAR-2017-0055 </td> <td style="text-align:left;"> comment letter submitted on behalf of the Sierra Club, Earth Justice, Air Alliance Houston, Texas Environmental Justice Advocacy Service and Public Citizen Texas Office, provided several comments for our consideration </td> </tr> <tr> <td style="text-align:left;"> TX155.26 Air Quality State Implementation Plans; Approval and Promulgation: Withdrawal of Federal Implementation Plan; Texas; Prevention of Significant Deterioration; Greenhouse Gas Tailoring Rule Revisions, Final rule. 11 pages </td> <td style="text-align:left;"> EPA-R06-OAR-2013-0808 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and </td> </tr> <tr> <td style="text-align:left;"> TX153.49 Air Quality State Implementation Plans; Approval and Promulgation; Texas; Revisions to the New Source Review State Implementation Plan; Flexible Permit Program, Final Rule-2. </td> <td style="text-align:left;"> EPA-R06-OAR-2013-0542 </td> <td style="text-align:left;"> as follows The TCEQ, Baker Botts, and the Environmental Integrity Project EIP on behalf of the Environmental Justice Advocacy Services, Community in Power &amp; Development Association, Citizens for Environmental Justice, Air Alliance Houston, Texas Campaign for the Environment, and the Texas Impact. </td> </tr> <tr> <td style="text-align:left;"> TX109.20 Air Quality State Implementation Plans; Approval and Promulgation; Texas; Public Participation for Air Quality Permit Applications; Final rule. 23 pages </td> <td style="text-align:left;"> EPA-R06-OAR-2010-0612 </td> <td style="text-align:left;"> Justice, Texas Environmental Justice Advocacy Services, Public Citizen and Environmental Integrity Comments Regarding Environmental Justice Comment 15 UT Law clinic commented that EPA has a mandate to provide members of Environmental Justice communities with theopportunity to participate in decisions EPA believes it is important to recognize and work with Environmental Justice communities to assure Rather, EPA is subject to Executive Order 12898 Federal Actions to Address Environmental Justice in
TX044.50 Approval and Promulgation of Implementation Plans: Texas; Excess Emissions During Startup, Shutdown, Maintenance, and Malfunction Activities. 14 pages ny9 EPA-R06-OAR-2006-0132 Companies of Texas; and Environmental Clinic University of Texas School of Law on behalf of Citizens for Environmental Justice, Lone Star Chapter Sierra Club, Public Citizen s Texas Office, Air Alliance Houston, Environmental
Removal of Ohio Nuisance Provision (3745-15-07) final rule EPA-R05-OAR-2020-0055 Commenters state that the NPRM would harm already vulnerable Ohioans by eliminating an important environmental justice tool.
Final Approval of the Minnesota Infrastructure SIP Requirements for the Ozone, NO2, SO2, and PM2.5 NAAQS EPA-R05-OAR-2014-0503 points to a news article summarizing research by Clark, Millet, and Marshall showing patterns in environmental justice for NO2 concentrations in Minnesota and elsewhere. While EPA employs multiple mechanisms for strengthening environmental justice communities, EPA believes The commenter does not attempt to demonstrate how environmental justice might be lawfully considered
Correction to regulatory text for Indiana NSR/PSD and Indiana PM2.5 NSR EPA-R05-OAR-2012-0567 The rule also does not involve special consideration of environmental justice related issues as required
Final Approval of PM 2.5 Clean Data Determination for Saint Louis EPA-R05-OAR-2010-0034 significant source of PM2.5 emissions in the Saint Louis area, and that the plant s operations raise environmental justice concerns. EPA reviewed air quality data throughout the Saint Louis area, including environmental justice areas This means that the health of citizens who live or work in environmental justice communities is protected
Final Approval of the Wisconsin NOx RACT Rules (NR 428) EPA-R05-OAR-2007-0587 Comment 9 The commenter also states that multi facility averaging threatens environmental justice
Air Quality State Implementation Plans; Approvals and Promulgations: North Carolina; Redesignation of the Charlotte-Rock Hill, 2008 8-Hour Ozone Nonattainment Area to Attainment EPA-R04-OAR-2015-0275 Moreover, the impacts of ozone pollution have significant environmental justice implications as African justice implications of such action and, if it still determines that redesignation is justified, must As noted in EPA s May 21, 2015 NPR, Executive Order 12898 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Air Quality State Implementation Plans; Approvals and Promulgations: Kentucky; Jefferson County; Emissions During Startups, Shutdowns and Malfunctions EPA-R04-OAR-2013-0272 As an example, the commenter stated that an environmental justice community in Kentucky has been impacted
Federal Register Final Rule EPA-R04-OAR-2005-GA-0005 on minority populations and low income population in Brunswick, Georgia, Executive Order 12898 Environmental Justice and Executive Order 13045 Protection of Children from Environmental Health Risks and Safety
Air Quality State Implementation Plans; Approvals and Promulgations: Pennsylvania; Reasonably Available Control Technology Determinations EPA-R03-OAR-2020-0189 The commenter claims that EPA has a duty to consider environmental justice and should disapprove the The commenter also urges EPA to consider environmental justice as part of the RACT determination for is legally required to consider for determining RACT are those in the statue and regulations, and environmental justice is not a statutory or regulatory factor in the RACT analysis.
Air Quality State Implementation Plans; Approval and Promulgation: Maryland; Determination of Attainment of the 2008 8-Hour Ozone National Ambient Air Quality Standard for the Baltimore Moderate Nonattainment Area EPA-R03-OAR-2014-0884 this is of particular concern in the Baltimore Area given that asthma is an endemic problem and an environmental justice issue in Maryland. its mandates and the Agency is concerned with increased asthma incidences as well as with ensuring environmental justice for communities.
Air Quality State Implementation Plans; Approvals and Promulgations: Massachusetts; Air Plan Approval; Decommissioning of Stage II Vapor Recovery Systems EPA-R01-OAR-2015-0351 motorists, GDF employees, and members of the community; and result in a severe negative burden in Environmental Justice EJ areas in Massachusetts.
Air Quality State Implementation Plans; Approvals and Promulgations: Massachusetts; Transit System Improvements EPA-R01-OAR-2013-0786 adverse impacts of the SIP revision to lower income communities, sometimes raising the concept of environmental justice in that context. justice reasons. air quality or emissions implications, does not change in light of potential economic development or environmental justice concerns.
National Priorities List, Final Rule No. 48 EPA-HQ-SFUND-2008-0584 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and One commenter stated that the site also raised unspecified environmental justice concerns. EPA implements its commitment to environmental justice by ensuring fair treatment and meaningful involvement Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice.
National Priorities List, Final Rule No. 46 EPA-HQ-SFUND-2008-0580 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Priorities List, Final Rule No. 46 EPA-HQ-SFUND-2008-0577 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Priorities List for Uncontrolled Hazardous Waste Sites, Final Rule EPA-HQ-SFUND-2003-0009 Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy , OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United
Hazardous Waste Generator Improvements Rule EPA-HQ-RCRA-2012-0121 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and
Comprehensive Procurement Guideline V for Procurement of Products Containing Recovered Materials EPA-HQ-RCRA-2003-0005 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Conditional Exclusions from Solid Waste and Hazardous Waste for Solvent-Contaminated Wipes EPA-HQ-RCRA-2003-0004 Executive Order 12898 Environmental Justice Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. provision directs federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Primacy Approvals: Kentucky Underground Injection Control Class II Program EPA-HQ-OW-2015-0372 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and
Primacy Approvals: State of Kentucky Underground Injection Control Class II Program EPA-HQ-OW-2015-0372 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and
National Pollutant Discharge Elimination System (NPDES) Water Transfers Rule EPA-HQ-OW-2006-0141 Executive Order 12898 Actions To Address Environmental Justice in Minority Populations and Low Income Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Pollutant Discharge Elimination System Regulation: Removal of the Pesticide Discharge Permitting Exemption in Response to Sixth Circuit Court of Appeals Decision EPA-HQ-OW-2003-0063 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Primary Drinking Water Regulations: Long Term 2 Enhanced Surface Water Treatment Rule; Proposed Rule EPA-HQ-OW-2002-0039 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations or Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations or The Agency has considered environmental justice related issues concerning the potential impacts of justice issues. Thus, the LT2ESWTR meets the intent of Federal policy requiring incorporation of environmental justice
National Primary Drinking Water Regulations: Long Term 2 Enhanced Surface Water Treatment Rule EPA-HQ-OW-2002-0039 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations or Low Income Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations or Low Income Populations Executive Order 12898 establishes a Federal policy for incorporating environmental justice into Federal agency missions by directing agencies to identify and address disproportionately EPA has considered environmental justice related issues concerning the potential impacts of this action
Extension of Deadline for Action on the Section 126(b) Petition From New York EPA-HQ-OAR-2018-0170 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and
Air Quality Designations for the 2015 Ozone National Ambient Air Quality Standards EPA-HQ-OAR-2017-0548 Environmental Justice Concerns When the EPA establishes a new or revised NAAQS, the CAA requires Area designations address environmental justice concerns by ensuring that the public is properly informed Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and The documentation for this determination is contained in Section VII of this preamble, Environmental Justice Concerns. </td> </tr> <tr> <td style="text-align:left;"> Additional Air Quality Designations for the 2015 Ozone National Ambient Air Quality Standards </td> <td style="text-align:left;"> EPA-HQ-OAR-2017-0548 </td> <td style="text-align:left;"> Environmental Justice Concerns XV. Statutory and Executive Order Reviews A. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Environmental Justice Concerns When the EPA establishes a new or revised NAAQS, the CAA requires Area designations address environmental justice concerns by ensuring that the public is properly informed Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and </td> </tr> <tr> <td style="text-align:left;"> Air Quality Designations for the 2015 Ozone National Ambient Air Quality Standards: Corrections </td> <td style="text-align:left;"> EPA-HQ-OAR-2017-0548 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and </td> </tr> <tr> <td style="text-align:left;"> Additional Air Quality Designations for 2015 Ozone National Ambient Air Quality Standards: San Antonio, TX Area </td> <td style="text-align:left;"> EPA-HQ-OAR-2017-0548 </td> <td style="text-align:left;"> Environmental Justice Concerns XI. Statutory and Executive Order Reviews A. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Environmental Justice Concerns When the EPA establishes a new or revised NAAQS, the CAA requires Area designations address environmental justice concerns by ensuring that the public is properly informed Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and </td> </tr> <tr> <td style="text-align:left;"> Air Quality Designations: 2012 Primary Annual Fine Particle National Ambient Air Quality Standards </td> <td style="text-align:left;"> EPA-HQ-OAR-2012-0918 </td> <td style="text-align:left;"> Environmental Justice Considerations X. Statutory and Executive Order Reviews A. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Environmental Justice Considerations The CAA requires that the EPA designate as nonattainment Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and this preamble titled, Environmental Justice Considerations . </td> </tr> <tr> <td style="text-align:left;"> Air Quality Designations and Technical Amendments: 2012 Primary Annual Fine Particle PM2.5 National Ambient Air Quality Standards </td> <td style="text-align:left;"> EPA-HQ-OAR-2012-0918 </td> <td style="text-align:left;"> Environmental Justice Considerations IV. Statutory and Executive Order Reviews A. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Environmental Justice Considerations The CAA requires the EPA to determine through a designation Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and this preamble titled,Environmental Justice Considerations.
Air Quality Designations: Georgia and Florida 2012 Primary Annual Fine Particle (PM2.5) National Ambient Air Quality Standard (NAAQS); Final Rule EPA-HQ-OAR-2012-0918 Environmental Justice Considerations The CAA requires the EPA to determine through a designation Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and The results of this evaluation of environmental justice considerations is contained in Section III of this preamble titled, Environmental Justice Considerations. </td> </tr> <tr> <td style="text-align:left;"> Air Quality State Implementation Plans; Approvals and Promulgations: Air Quality Designations for the 2012 Primary Annual Fine Particle National Ambient Air Quality Standard for Areas in Tennessee </td> <td style="text-align:left;"> EPA-HQ-OAR-2012-0918 </td> <td style="text-align:left;"> Environmental Justice Considerations When the EPA establishes a new or revised NAAQS, the CAA requires justice organizations on August 9, 2012. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and The documentation for this determination is contained in Section III of this preamble,Environmental Justice Considerations.
Air Quality Designations: Florida; 2012 Primary Annual Fine Particle (PM2.5) National Ambient Air Quality Standard EPA-HQ-OAR-2012-0918 Environmental Justice Considerations When the EPA establishes a new or revised NAAQS, the CAA requires justice organizations on August 9, 2012. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and The documentation for this determination is contained in Section III of this preamble, ``Environmental Justice Considerations.
Air Quality Designations: 2010 Sulfur Dioxide (SO2) Primary National Ambient Air Quality Standard EPA-HQ-OAR-2012-0233 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. Page 47197 federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Air Quality Designations for the 2008 Ozone National Ambient Air Quality Standards for Several Counties in Illinois, Indiana, and Wisconsin; Corrections to Inadvertent Errors in Prior Designations EPA-HQ-OAR-2008-0476 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Air Quality Designations for the 2008 Ozone National Ambient Air Quality Standards; Final Rule EPA-HQ-OAR-2008-0476 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Standards of Performance for Equipment Leaks of VOC in the Synthetic Organic Chemicals Manufacturing Industry; Standards of Performance for Equipment Leaks of VOC in Petroleum Refineries EPA-HQ-OAR-2006-0699 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Standards of Performance for Equipment Leaks of VOC in the Synthetic Organic Chemicals Manufacturing Industry; Standards of Performance for Equipment Leaks of VOC in Petroleum Refineries; Direct Final Rule; Stay EPA-HQ-OAR-2006-0699 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Standards of Performance for Equipment Leaks of VOC in the Synthetic Organic Chemicals Manufacturing Industry; Standards of Performance for Equipment Leaks of VOC in Petroleum Refineries; Interim Final Rule; Stay EPA-HQ-OAR-2006-0699 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Perchloroethylene Air Emission Standards for Dry Cleaning Facilities EPA-HQ-OAR-2005-0155 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Perchloroethylene Air Emission Standards for Dry Cleaning Facilities - Final rule; withdrawal; revision EPA-HQ-OAR-2005-0155 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Emission Standards for Hazardous Air Pollutants: General Provisions EPA-HQ-OAR-2004-0094 Impacts Comment One commenter stated that EPA failed to comply with Executive Order 12898 on Environmental Justice. Response Executive Order 12898 establishes a Federal policy for incorporating environmental justice
Operating Permit Programs; Flexible Air Permitting Rule EPA-HQ-OAR-2004-0087 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Control of Emissions of Air Pollution From Locomotive Engines and Marine Compression-Ignition Engines Less Than 30 Liters per Cylinder; Republication; Final Rule EPA-HQ-OAR-2003-0190 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high justice executive order.
Control of Emissions of Air Pollution from Locomotive Engines and Marine Compression-Ignition Engines Less than 30 Liters per Cylinder EPA-HQ-OAR-2003-0190 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high justice executive order.
National Emission Standards for Hazardous Air Pollutants: Organic Liquids Distribution (Non-Gasoline); Final rule; partial withdrawal of direct final rule; amendments EPA-HQ-OAR-2003-0138 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Emission Standards for Hazardous Air Pollutants: Organic Liquids Distribution (Non-Gasoline) EPA-HQ-OAR-2003-0138 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and
National Emission Standards for Hazardous Air Pollutants: Plywood and Composite Wood Products EPA-HQ-OAR-2003-0048 The rule also does not involve special consideration of environmental justice related issues as required
Standards of Performance for New and Existing Stationary Sources: Electric Utility Steam Generating Units EPA-HQ-OAR-2002-0056 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and involving small business impacts, unfunded mandates including impacts for Tribal governments , environmental justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance analyses. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and
Revision of December 2000 Regulatory Finding on the Emissions of Hazardous Air Pollutants From Electric Utility Steam Generating Units and the Removal of Coal- and Oil-Fired Electric Utility Steam Generating Units From the Section 112(c) List EPA-HQ-OAR-2002-0056 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice
Standards of Performance for New and Existing Stationary Sources: Electric Utility Stream Generating Units EPA-HQ-OAR-2002-0056 environmental justice related issues as required by Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 .
Corrected Federal Register Notice for original Federal Register ID# OAR-2002-0056-6246 EPA-HQ-OAR-2002-0056 environmental justice related issues as required by Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 .

Example comments

Excerpts from comments mentioning “environmental justice” on proposed rules that did not address environmental justice:

ejcomments %>% 
  filter(docket_id %in% ejFR_PR$docket_id) %>% 
  distinct(docket_id, title, summary) %>%
  group_by(docket_id) %>%
  slice_sample(n = 2) %>% kablebox()
title docket_id summary
Comment on FR Doc # 2016-01865 BLM-2016-0001 Dec. 4, 2015 ozone induced health impacts, nitrogen deposition, visibility, climate impacts, and environmental justice Am.
Comment on FR Doc # 2016-01865 BLM-2016-0001 and I am committed to taking a stand against oil and gas exploration on public lands, as this is an Environmental Justice issue here in our vulnerable communities. and I am committed to taking a stand against oil and gas exploration on public lands, as this is an Environmental Justice issue here in our vulnerable communities.
Comment on FR Doc # 2017-15696 BLM-2017-0001 There are moral, ethical and environmental justice principles that must to be included in decisions impacting
Comment on FR Doc # 2017-15696 BLM-2017-0001 climate action and environmental protections at all government levels to achieve not only climate and environmental justice in our country, but also 2 social justice in multiple problem areas including the lack of
Comment on FR Doc # 2017-21294 BLM-2017-0002 Clean Air Act and Clean Water Act regulations, Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, Section 7 of the ESA or under Section 106
Comment on FR Doc # 2017-21294 BLM-2017-0002 statutory requirements for review and or consultation under the National Environmental Policy Act NEPA , environmental justice protections, the Endangered Species Act, and the National Historic Preservation Act. The Proposed Suspension disparately impacts vulnerable communities and violates environmental justice tribal lands and members, the Proposed Suspension violates E.O. 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations Feb. 16, 1994 , which requires federal
Comment on FR Doc # 2018-03144 BLM-2018-0001 statutory requirements for review and or consultation under the National Environmental Policy Act NEPA , environmental justice protections, the Endangered Species Act, and the National Historic Preservation Act. The Proposed Rescission disparately impacts vulnerable communities and violates environmental justice tribal lands and members, the Proposed Rescission violates E.O. 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations Feb. 16, 1994 , which requires federal
Comment on FR Doc # 2018-03144 30,883 comments BLM-2018-0001 We must ensure environmental justice for all indigenous peoples, US residents, animals and the environment
Comments from EarthJustice 2 of 5 BSEE-2018-0002 habitats; Areas of special concern, including essential fish habitat; Sociocultural systems and environmental justice; Population, employment, and regional income; Tourism and recreation; Commercial Sociocultural Systems and Environmental Justice Humans can be affected by an oil spill through For Phase 3, the social, demographic, economic, and environmental justice impacts would not begin or BP s waste management plan raises environmental justice concerns. Environmental justice considerations in Lafourche Parish, Louisiana Final report. U.S. Environmental justice and the BP Deepwater Horizon oil spill. N.Y.U. Environmental justice concerns arising from Gulf of Mexico oil spill aired. The Times Picayune. E 144 13.2 Environmental Justice …………………………………………………………. Cargo barges accounted for six ship calls in 2013 Port of Galveston, n.d. . 13.2 ENVIRONMENTAL JUSTICE Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations For environmental justice purposes, Galveston and the Houston Sugar Land Baytown MSA are considered justice purposes.
Comments from EarthJustice 5 of 5 BSEE-2018-0002 ……………………………………………………….. 16 3.8 Sociocultural Systems and Environmental Justice ………………………………………………………………. 18 3.9 Tourism and Justice Sociocultural systems and environmental justice issues present in the GOM, Alaska, and Pacific justice and recreational and commercial fisheries in the three OCS regions considered in this EA. justice concerns.
Worksafe – CA CMS-2012-0022 The reality of this unequal burden is not just a health issue, but an issue of environmental justice
OR CMS-2014-0115 As a college student with aspirations in working for social and environmental justice, birth control
IA CMS-2015-0083 Advance human rights and social, economic, and environmental justice 4.
DC CMS-2015-0083 Advance human rights and social, economic, and environmental justice 4.
CA-California Pan-Ethnic Health Network CMS-2017-0021 Rural Indian Health Board Tana Lepule Nayamin Martinez, MPH Director Central California Environmental Justice Network CCEJN Poki Namkung, MD, MPH Doretha Williams Flournoy Interim President
IL–Hardenbergh, Sabrina CMS-2017-0021 Medicare for All and the minimization of environmental health and environmental justice issues would
CA–California Pan-Ethnic Health Network CMS-2017-0141 Rural Indian Health Board Tana Lepule Nayamin Martinez, MPH Director Central California Environmental Justice Network CCEJN Poki Namkung, MD, MPH Jeffrey Reynoso, PhD Executive Director Latino
CA CMS-2018-0076 Rural Indian Health Board Tana Lepule Nayamin Martinez, MPH Director Central California Environmental Justice Network CCEJN Jeffrey Reynoso, PhD Executive Director Latino Coalition for a Healthy
CA CMS-2018-0135 Rural Indian Health Board Tana Lepule Nayamin Martinez, MPH Director Central California Environmental Justice Network CCEJN Jeffrey Reynoso, PhD Executive Director Latino Coalition for a Healthy
CA CMS-2018-0135 justice system, gender and racial equality, respect for human dignity, responsible fiscal policies and environmental justice. that needs to be arrested, not the poor simply for being poor. 109 Bill Chameides, A look at environmental justice in the United States today, Huffington Post Blog, 20 January 2014.
CA–California Pan-Ethnic Health Network (CPEHN) CMS-2018-0140 Rural Indian Health Board Tana Lepule Nayamin Martinez, MPH Director Central California Environmental Justice Network CCEJN Jeffrey Reynoso, PhD Executive Director Latino Coalition for a Healthy
CA CMS-2019-0006 Rural Indian Health Board Tana Lepule Nayamin Martinez, MPH Director Central California Environmental Justice Network CCEJN Jeffrey Reynoso, PhD Executive Director Latino Coalition for a Healthy
Comment on CMS-2019-0111-0092 CMS-2019-0111 Environmental Justice; 11 2 71 76. 50 Burkey, M.L., Bhadury, J., Eiselt, H.A., Toyoglu, H. 2017
Comment on FR Doc # E9-13836 DOE-EERE-OT-2009-0015 economically sustainable, often in collaboration with non profit organizations like Detroiters for Environmental Justice DWEJ . brochures Email lawrence hardingeotech.com Website www.hardingeotech.com Detroiters Working for Environmental Justice Website www.dwej.org
Comment on FR Doc # 2011-03981 DOE-HQ-2010-0002 was attended by more than 35,000 participants from 150 countries around the world ranging from environmental justice groups to indigenous rights organizations to governmental representatives, United Nations
Comment on FR Doc # 2020-08511 DOE-HQ-2020-0017 Water Action Friends of the Earth Gasp Global Witness Global Witness Harambee House Citizens For Environmental Justice Healthy Gulf Institute for Policy Studies Climate Policy Program International Fund for Animal
Clement Monge Consulting - Comments DOT-OST-1997-2550 population surrounding an airport is subject to noise abatement, or some other concern covered by the Environmental Justice Act. 4.
2001-08-01 General Comment EERE-2006-STD-0089 Logan Energy Program Coordinator New York City Environmental Justice Alliance 115 W. 30th St., 709 NY Logan Energy Program Coordinator New York City Environmental Justice Alliance 115 W. 30th St., 709
2011-10-14 Submitter Information EERE-2011-BT-STD-0047 for qualifications and experience, 35 points for cost, and 15 points for additional incentives in Environmental Justice areas.
2015-10-29 Stakeholder working group comments, includes attachments EERE-2014-BT-STD-0048 Community and Environmental Justice Considerations A. Proximity Analysis B. 5 Community and environmental justice considerations. Climate change is an environmental justice issue. 10 Community and environmental justice considerations. Environmental Justice Organizations Agency officials engaged with environmental justice groups representing Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and The EPA also met with representatives of environmental justice organizations, environmental groups Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. The EPA defines environmental justice as the fair treatment and meaningful involvement of all people
2019-11-04 Comment response to the published Notice of proposed determination and request for comment EERE-2019-BT-STD-0022 Standards for Residential Furnaces, April 13, 2015, pp. 9 14. 221 Miranda, Maie Lynn, 2011, Making the Environmental Justice Grade The Relative Burden of Air Pollution in the United States, Int.
2020-10-13 Joint comment response to the published Notice of proposed rulemaking EERE-2020-BT-STD-0001 standards would be harmful for low income consumers for a number of reasons and raise issues warranting an Environmental Justice review.
Comment attachment submitted by William O’Sullivan (OSullivan), New Jersey Department of Environmental Protection EPA-HQ-OAR-2002-0056 COMMENT How will annual testing impact the environmental justice executive order, which looks at the
Comment submitted by Kyle Kinner, JD, MPA, Acting Director, Policy and Programs, Environment and Health, Physicians for Social Responsibility (PSR) EPA-HQ-OAR-2002-0056 Literacy for Environmental Justice Ma at Youth Academy Mercury Free Minnesota Minnesota Public
New York State Community of Churches; Comments on: The December 31, 2002, proposal to revise the regulations governing the New Source Review (NSR) programs mandated by parts C and D of title I of the Clean Air Act (CAA). EPA-HQ-OAR-2002-0068 March 31, 2003 presented by Edward Bennett, Environmental Justice Coordinator Troy Conference of the
Lawyers’s Committee for Civil Rights Under Law EPA-HQ-OAR-2002-0068 Armstrong Attorney Environmental Justice Project The Cornrnlnea was formed in 1963et the request
Comments in Opposition to 68 Fed. Reg. 17741 (April 11, 2003), Public Docket No. OAR-2003-0046 EPA-HQ-OAR-2003-0046 P Providing Legal & Technical Assistance to the Grassroots Movement for Environmental Justice P Center
Comment submitted by Norbord Industries and Georgia Pacific EPA-HQ-OAR-2003-0048 implementing regulations at 40 CFR Part 68, and 4 does not comply with the Executive Order 12898 on environmental justice. Environmental Justice and Non Discrimination under Title VI of the Civil Rights Act Petitioners Justice in Minority Populations and Low Income Populations. It generally directs federal agencies to make environmental justice part of their mission by identifying
Comment attachment entitled “Strategic Reconfiguration of the Valdez Marine Terminal: Environmental Report” submitted by Marilyn B. Leland, Deputy Council, Prince William Sound Regional Citizens’ Advisory Council EPA-HQ-OAR-2003-0138 Road Systems ………………………………………………………………… 3 24 3.10 Environmental Justice………………………………………………………………………………… ………………………………………………………………………….. 4 18 4.13 Environmental Justice………………………………………………………………………………… Environmental justice is defined as the fair treatment and meanin involvement of all people regardless
Comment submitted by Janea A. Scott, Environmental Defense EPA-HQ-OAR-2003-0190 Many of these communities are low income neighborhoods and or communities of color, raising environmental justice concerns.
Comment submitted by David E. Brann, Manager, Emissions Compliance and Martha A. Lenz, Director, Engine and Engine Systems Design, Electro-Motive Diesel, Inc.  EPA-HQ-OAR-2003-0190 We also support EPA s environmental justice considerations.
Comment submitted by Barry R. Wallerstein, Doctor of Environmental Sciences and Engineering, Executive Officer, South Coast Air Quality Management District (SCAQMD) EPA-HQ-OAR-2004-0087 without compromising any environmental requirements, specifically as it relates to toxic emissions and environmental justice concerns.
Comment submitted by Barry R. Wallerstein, Executive Director, South Coast Air Quality Management District (SCAQMD) EPA-HQ-OAR-2004-0087 without compromising any environmental requirements, specifically as it relates to toxic emissions and environmental justice concerns .
Comment submitted by Kelly Haragan, Environmental Integrity Project (EIP) (Part 1 of 4) EPA-HQ-OAR-2004-0094 EPA HAS FAILED TO COMPLY WITH EXECUTIVE ORDERS ON ENVIRONMENTAL JUSTICE AND CHILDREN S HEALTH. Although EPA at least acknowledged this Executive Order unlike the Order on Environmental Justice EPA HAS FAILED TO COMPLY WITH EXECUTIVE ORDERS ON ENVIRONMENTAL JUSTICE AND CHILDREN S HEALTH. The Executive Order on Environmental Justice requires EPA to make achieving environmental justice part Although EPA at least acknowledged t h s Executive Order unlike the Order on Environmental Justice
Comment submitted by James Pew, Sierra Club, Pollution Prevention Center EPA-HQ-OAR-2005-0155 EPA HAS FAILED TO COMPLY WITH EXECUTIVE ORDERS ON ENVIRONMENTAL JUSTICE AND CHILDREN S HEALTH. The Executive Order on Environmental Justice requires EPA to make achieving environmental justice Although EPA at least acknowledged this Executive Order unlike the Order on Environmental Justice EPA HAS FAILED TO COMPLY WITH EXECUTIVE ORDERS ON ENVIRONMENTAL JUSTICE AND CHILDREN S HEALTH. IV.
Comment submitted by Vinson Hellwig, Chair, STAPPA Air Toxics Committee, State and Territorial Air Pollution Program Administrators (STAPPA) and Robert Colby, Chair, ALAPCO Air Toxics Committee, Association of Local Air Pollution Control Officials (ALAPCO) EPA-HQ-OAR-2005-0155 Clearly, these findings raise concerns about environmental justice.
Comment submitted by Meg Healy, Research Director, Galveston-Houston Association for Smog Prevention, (GHASP) EPA-HQ-OAR-2006-0699 this proceeding on behalf of the Galveston Houston Association for Smog Prevention, Citizens for Environmental Justice, Environmental Integrity Project, Mothers for Clean Air, and Public Citizen. healy ghasp.org Comments of the Galveston Houston Association for Smog Prevention, Citizens for Environmental Justice, Environmental Integrity Project, Mothers for Clean Air, and Public Citizen on EPA s Proposed EPA HQ OAR 2006 0699 The Galveston Houston Association for Smog Prevention, joined by Citizens for Environmental Justice, Environmental Integrity Project, Mothers for Clean Air, and Public Citizen, appreciates this Justice s Eric Schaeffer Director Environmental Integrity Project s Jane Laping Executive
Comment submitted by C. Sexton EPA-HQ-OAR-2008-0476 One of your seven principles in a memorandum that you wrote discusses environmental justice In which
Comment submitted by Jonathan Doster, Citizen Action/Illinois on behalf of Illinois Campaign to Clean Up Diesel Pollution EPA-HQ-OAR-2008-0476 of Teamsters Local 705 Institute of Medicine Chicago Keep Rock Island Beautiful Little Village Environmental Justice Organization Loyola University, Student Environmental Alliance Missouri Coalition for the
Comment submitted by Joshua Stebbins and Zachary M. Fabish, Sierra Club EPA-HQ-OAR-2012-0233 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Public health e.g., ALA, ATS and environmental organizations e.g., CBD, WEACT for Environmental Justice were generally opposed to revoking the current 24 hour and annual standards. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. National Technology Transfer and Advancement Act 10.0 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Low Income Population Executive Summary ES.1 Overview Justice in Minority Populations and Low Income Populations Executive Order 12898 59 FR 7629; Feb . 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Comment submitted by N. Jonathan Peress, Vice President and Director of Clean Energy and Climate Change, Conservation Law Foundation (CLF) EPA-HQ-OAR-2012-0233 through focusing on four program areas, Clean Energy and Climate Change, Healthy Communities and Environmental Justice, Ocean Conservation, and Healthy Forests and Clean Water.
Comment submitted by Al Armendariz, Senior Campaign Representative, Sierra Club and Adrian Shelley, Director, Air Alliance Houston EPA-HQ-OAR-2012-0918 We are strong advocates for Houston s environmental justice communities. Appendix D Air Monitoring Checklist v Executive Summary Galena Park, Texas is an environmental justice community of some 10,000 residents on the Houston Ship Channel. Community Profile Galena Park, Texas is an environmental justice community located in East Houston Justice Advocacy Services have disputed the removal of exceptional events.36 It does not matter if
Comment submitted by Seth L. Johnson, Attorney, Earthjustice on behalf of Appalachian Mountain Club et al.  EPA-HQ-OAR-2017-0548 Physicians for Social Responsibility, Sierra Club, and West Harlem Environmental Action WE ACT for Environmental Justice , Earthjustice submits the following comments on the above named matter, in addition to any
Comment submitted by Air Alliance Houston et al.  EPA-HQ-OAR-2017-0548 justice, and conservation organizations, we write to respectfully urge that the U.S. GreenLatinos Harambee House Citizens for Environmental Justice Hip Hop Caucus Jesus People Against Justice Organization Moms Clean Air Force Natural Resources Defense Council North Carolina Environmental Environmental Law Center Texas Environmental Justice Advocacy Services T.E.J.A.S. Utah Physicians for a Healthy Environment WE ACT for Environmental Justice justice, and conservation organizations, we write to respectfully urge that the U.S. Steering Committee GreenLatinos Harambee House Citizens for Environmental Justice Hip Hop Caucus Justice Organization Moms Clean Air Force Natural Resources Defense Council North Carolina Environmental Southern Environmental Law Center Texas Environmental Justice Advocacy Services T.E.J.A.S. Utah Physicians for a Healthy Environment WE ACT for Environmental Justice
Comment submitted by Letitia James, Environmental Protection Bureau, Attorney General, State of New York et al.  EPA-HQ-OAR-2018-0170 separate petition for review challenging the same final agency action was filed and docketed as Texas Environmental Justice Advocacy Services v.
Comment submitted by Bethany Davis Noll, Litigation Director, Institute for Policy Integrity EPA-HQ-OAR-2018-0170 Environmental justice Environmental justice is the fair treatment and meaningful involvement of all Justice EPA defines environmental justice as the fair treatment and meaningful involvement of all Regulatory Impact Analyses of Environmental Justice Effects. Analyzing Evidence of Environmental Justice. Basic Information Environmental Justice. JUSTICE COMMUNITIES AND CHILDREN. justice communities and children in violation of Executive Orders 12898 and 13045. Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations In addition to these environmental justice impacts downwind, EPA s decision not to prohibit this pollution If EPA were to conduct an adequate environmental justice analysis for the rule, the agency might well Environmental Justice Some commenters addressed the potential environmental justice impacts of changes consider environmental justice in their activities under NEPA. Justice Executive Order EO 12898, Federal Actions to Address Environmental Justice in Minority Populations to incorporate environmental justice principles in programs, policies, and activities. Environmental Justice Guidance under the National Environmental Policy Act.
Comment entitled “NRWA Comments on LT2 and Stage 2” submitted by Ed Thomas, National Rural Water Association (NRWA) EPA-HQ-OW-2002-0039 Accounting for System Size Cost per Unit of Risk Reduction and Environmental Justice An additional
Comment submitted by Lorraine Eckstein, Ph.D., Alaska Community Action on Toxics (ACAT) EPA-HQ-OW-2003-0063 We promote environmental justice and the public s right to know about toxic materials that affect the
Comment submitted by Jon Devine and Melanie Shepherdson, Attorneys, Clean Water Project, Natural Resources Defense Council (NRDC) EPA-HQ-OW-2005-0037 showed that exposure to livestock odor varied by racial and economic characteristics, indicating an environmental justice issue among the state s swine farms Mirabelli et al., 2006a . of ifap facilities in North Carolina led to devastating environmental effects, including serious environmental justice issues.
Comment submitted by Kari Carney, Rural Organizer, Iowa Citizens for Community Improvement on behalf of the Campaign for Family Farms and the Environment EPA-HQ-OW-2005-0037 problems and needs and in taking action to address them; and be a vehicle for social, economic, and environmental justice.
Comment submitted by Sarah Wilhoite, Legislative Representative, Earthjustice EPA-HQ-OW-2006-0141 Environmental Justice This proposed rule fails entirely to consider the affect exempting transfers Further, Congress sent a clear message to EPA regarding the importance of environmental justice when Justice EPA Should Devote More Attention to Environmental Justice When Developing Clean Air Rules As EPA did not do the slightest analysis on the possible environmental justice effects of polluted water Justice 14 Oct. 2003 Barry Hill, the Director of the Office of Environmental Justice, testified
Comment submitted by Earthjustice on behalf of American Rivers, Amigos Bravos, Applalachian Center for the Economy and the Environment, et al EPA-HQ-OW-2006-0141 Environmental Justice This proposed rule fails entirely to consider the affect exempting transfers of Further, Congress sent a clear message to EPA regarding the importance of environmental justice when The promulgation of this rule with no consideration of its environmental justice effects is a violation Government Accountability Office, Environmental Justice EPA Should Devote More Attention to Environmental Justice 14 Oct. 2003 Barry Hill, the Director of the Office of Environmental Justice, testified that
Comment submitted by Tom FitzGerald, Director, Kentucky Resources Council, Inc. (KRC) EPA-HQ-OW-2015-0372 conservation of the natural resources of the Commonwealth, and to advancing environmental health and environmental justice across the Commonwealth.
Anonymous comment entitled “concerned citizen,” expressing concern over the effort to exclude toxic chemicals and conditions from regulations EPA-HQ-RCRA-2003-0004 with a background in the adverse health effects due to environmental contaminants, as a member of an Environmental Justice organization, and most importantly, as a concerned citizen I am appalled at the effort to exlude
Anonymous comment entitled " environmental PROTECTION agency, please PROTECT us!" EPA-HQ-RCRA-2003-0004 I have thought about working for a company such as yours, especially in terms of environmental justice
Citizen Petition Before the United States Environmental Protection Agency from Citizens For a Future New Hampshire, Resource Insitute for Low Entropy Systems and the Center For Food Safety EPA-HQ-RCRA-2003-0005 Petitioner New York City Environmental Justice Alliance is a citywide network that links grassroots justice. Petitioner The South Bronx Clean Air Coalition SBCAC is a community based environmental justice organization Petitioner Desert Citizens Against Pollution DCAP is a regional environmental justice group that works Petitioner California Communities Against Toxics CCAT is a coalition of 85 environmental justice groups
Comment focusing on “linguistic detoxification” and opposing consolidation of all compost under one designation, submitted by Tina Daly, Co-Chair, Sludge Team, Pennsylvania Environmental Network (PEN) EPA-HQ-RCRA-2003-0005 Pennsylvania Emrimmental Netwwk, PEN, founded 15 years e, ts a grass rooas enviromnr rtal p u p dedicated to environmental justice.
Comment submitted by District of Columbia, Department of Energy and Environment, Hazardous Waste Program EPA-HQ-RCRA-2012-0121 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and
Comment submitted by E. and S. Abeyta EPA-HQ-SFUND-1983-0002 environmental justice community that will receive the bulk of any new pollution.
Comment submitted by E. Abeyta EPA-HQ-SFUND-1983-0002 proposal of delisting these sites and looking for Brownfield remediation money does not help people in the Environmental Justice community of San Jose. hazardous waste dumping from multiple industries on the GE property that made the community of San Jose an Environmental Justice community. How can EPA define Environmental Justice as the fair treatment and meaningful involvement of all people
Response to 68 FR 23094, April 30, 2003, Proposed Listing of the 68th Street Dump Site Landfill, Baltimore Maryland EPA-HQ-SFUND-2003-0009 experts who represent academia, businessand industry, community and environmental advocacy groups, environmental justice organizations, professional organizations, and state, local, and tribal governments. and environmental advocacy groups, federal, state, local, and tribal governments, regulators, and environmental justice, labor, non governmental and professional organizations.
Response to 68 FR 23094, April 30, 2003, Proposed Listing of the 68th Street Dump Site Landfill, Baltimore Maryland EPA-HQ-SFUND-2003-0009 site history; current or anticipated Fund financed activity; the PRPs involved at the site; and environmental justice and other community concerns. 3.
Comment urging the USEPA to put Vieques on the list for Superfund EPA clean up site, submitted by Sam Card EPA-HQ-SFUND-2004-0011 Superfund EPA cc brisa_caribena hotmail.com, vieques forusa.org Subject FW Vieques FOR Environmental Justice Action Alert 9 30 04 From Sam Card 404 Walnut Street Berryville Justice Action Alert 9 30 04 >Date Fri, 01 Oct 2004 09 57 11 0700 > > > >>From Justice Action Alert 9 30 04 >>Date Thu, 30 Sep 2004 09 45 10 0400 >> >>Vieques Environmental Justice Action Alert >> >>TIME SENSITIVE DEADLINE OCT. 7, 2004 >> >>The people in Vieques
Comment urging the USEPA to fully enfoce the law and use its discretionary power for prompt action toward a complete and effective clean up, submitted by Albert Huang, Policy Advocate, Environmental Health Coalition (HEC) EPA-HQ-SFUND-2004-0011 effective grassroots organizations in the United States, using social change strategies to achieve environmental justice.
05-948896 - Petitions to the City of Minneapolis and to the Minneapolis City Council Submitted with Public Comments on Proposed NPL Partial Deletion (Redacted) EPA-HQ-SFUND-2006-0759 justice and social and economic equity to their challenged neighborhood through this impressive project justice and social and economic equity to their challenged neighborhood through this impressive project justice and social and economic equity to their challenged neighborhood through this impressive project justice and social and economic equity to their challenged neighborhood through this impressive project justice and social and economic equity to their challenged neighborhood through this impressive project
05-948897 - August 2019 Public Comments Submitted on Proposed NPL Partial Deletion (Redacted) EPA-HQ-SFUND-2006-0759 justice and social and economic equity to their challenged neighborhood through this impressive project justice and social and economic equity to their challenged neighborhood through this impressive project justice and social and economic equity to their challenged neighborhood through this impressive project justice and social and economic equity to their challenged neighborhood through this impressive project justice and social and economic equity to their challenged neighborhood through this impressive project
Comment submitted by L. Davis EPA-HQ-SFUND-2008-0577 East Chicago, Indiana, is a recognized Environmental Justice EJ community. U.S. This is not Environmental Justice this is clear bias by the Responsible Parties and U.S.
Comment submitted by Teresa Mills, Director, Buckeye Environmental Network, et al.  EPA-HQ-SFUND-2008-0580 It is our opinion that this site should be investigated as being in an Environmental Justice Community According to the US EPA Environmental Justice Assessment Tool, within a one mile radius of the site
Comment submitted by Laurence S. Kirsch, Goodwin Procter LLP and M. Lindsay Ford, Parsons Behle & Latimer on behalf of US Magnesium LLC EPA-HQ-SFUND-2008-0584 EPA Region VIII Office of Enforcement, Compliance and 2 Environmental Justice, Technical Enforcement F. . . . …7. 5 _ ENVIRONMENTAL JUSTICE, TECHNNICAL ENFORCEMENT PROGRAM COMPLIANCE EVALUATION INSPECTION . Office of Enforcement, Compliance aind Environmental Justice U.S . C RMA DANA STOTSKY ANDREW LENSINK Office of Enforcement, Compliance and Environmental Justice U.S Office of Enforcement, Compliance and Environmental Justice U.S. Michael Risner, Acting Assistant Regional Administrator, Office of Enforcement, Compliance and Environmental Justice, EPA, dated July 27, 2007 EPA Remedy Report attached hereto and incorporated herein by
Comments on EPA-R01-OAR-2008-0639, EPA-R01-OAR-2008-0641, EPA-R01-OAR-2008-0642, EPA-R01-OAR-2008-0643 EPA-R01-OAR-2008-0639 Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order….. Region 9 Responded to Comments on Specific Issues Regarding Environmental Justice 133 Conclusion Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order The Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order D. Region 9 Responded to Comments on Specific Issues Regarding Environmental Justice CONCLUSION However, air toxics is a frequent question asked by public under the Environmental Justice programs. Environmental justice concepts can become issues when power line siting decisions are made.
Comments on EPA-R01-OAR-2008-0639, EPA-R01-OAR-2008-0641, EPA-R01-OAR-2008-0642, EPA-R01-OAR-2008-0643 EPA-R01-OAR-2008-0641 Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order….. Region 9 Responded to Comments on Specific Issues Regarding Environmental Justice 133 Conclusion Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order The Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order D. Region 9 Responded to Comments on Specific Issues Regarding Environmental Justice CONCLUSION However, air toxics is a frequent question asked by public under the Environmental Justice programs. Environmental justice concepts can become issues when power line siting decisions are made.
Comments on EPA-R01-OAR-2008-0639, EPA-R01-OAR-2008-0641, EPA-R01-OAR-2008-0642, EPA-R01-OAR-2008-0643 EPA-R01-OAR-2008-0642 Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order….. Region 9 Responded to Comments on Specific Issues Regarding Environmental Justice 133 Conclusion Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order The Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order D. Region 9 Responded to Comments on Specific Issues Regarding Environmental Justice CONCLUSION However, air toxics is a frequent question asked by public under the Environmental Justice programs. Environmental justice concepts can become issues when power line siting decisions are made.
Comments on EPA-R01-OAR-2008-0639, EPA-R01-OAR-2008-0641, EPA-R01-OAR-2008-0642, EPA-R01-OAR-2008-0643 EPA-R01-OAR-2008-0643 Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order….. Region 9 Responded to Comments on Specific Issues Regarding Environmental Justice 133 Conclusion Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order The Region 9 Complied With Its General Obligations Under the Environmental Justice Executive Order D. Region 9 Responded to Comments on Specific Issues Regarding Environmental Justice CONCLUSION However, air toxics is a frequent question asked by public under the Environmental Justice programs. Environmental justice concepts can become issues when power line siting decisions are made.
Comment on EPA-R01-OAR-2009-0469-0001 EPA-R01-OAR-2009-0469 Connecticut Fund for the Environment Conservation Law Foundation Fairfield County Environmental Justice Bridgeport has been recognized by the state s environmental justice law as a distressed municipality and contains environmental justice neighborhoods. Fairfield County Environmental Justice Network works to protect urban enviroImaents in Connecticut through Please pro uously affected As a Connecticut resident born in Bridgeport, I mote environmental justice
Email comment submitted by Mary Ellen Welch, on Monday, December 29, 2014 EPA-R01-OAR-2013-0786 in these communities are many low income people and immigrant communities it is my opinion that the Environmental Justice regulation applies to this project.
Email comment submitted for Mr. Frederick Salvucci (former Secretary of Massachusetts Department of Transportation), on Monday, December 29, 2014. EPA-R01-OAR-2013-0786 The extension will provide, if constructed, much better connection of the Environmental Justice communities Massachusetts has also just promulgated new Environmental Justice regulations.
VAPOR RECOVERY ASSOCIATION Comment on EPA-R01-OAR-2015-0351-0001 EPA-R01-OAR-2015-0351 This negative burden will be especially acute in so called Environmental Justice or EJ areas of the
Revised Comment ltr from Daniel Gutman EPA-R02-OAR-2013-0192 Further, NYMTC incorporates the principles of environmental justice into its policies, planning and project
Garcia Velez Comments EPA-R02-OAR-2016-0559 Discussion In spite of the sensitive matter and that it affects several environmental justice communities
Garcia & Velez Comment on EPA-R02-OAR-2016-0559-0001 EPA-R02-OAR-2016-0559 Discussion In spite of the sensitive matter and that it affects several environmental justice communities
Comment on EPA-R03-OAR-2014-0884-0001 EPA-R03-OAR-2014-0884 Moreover, these impacts have significant environmental justice implications as black Marylanders are The Baltimore area s population and its environmental justice communities in particular have long suffered Asthma Is an Environmental Justice Issue in Maryland justice implications. The Baltimore population and its environmental justice communities in particular need true, lasting
Comments from Sierra Club and Clean Air Council EPA-R03-OAR-2014-0910 The Proposed Rule Implicates Serious Environmental Justice Concerns By permitting system wide averaging In accordance with recommendations from the Environmental Justice Workgroup EJWG , DEP identifies environmental justice areas of concern as any census tract where twenty percent or more of the area s proposals, the Pennsylvania Environmental Justice Advisory Board EJAB was created to review and By allowing system wide averaging, DEP is ignoring EPA mandates on environmental justice concerns and ENVIRONMENTAL JUSTICE On February 11, 1994, Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, was signed. EPA defines environmental justice as the fair treatment and meaningful involvement of all people 46 In addition, EPA published guidance entitled, Final Guidance For Incorporating Environmental Justice With respect to the proposed Facility, EPA is aware that the public is raising environmental justice
Comment on EPA-R03-OAR-2015-0656-0001 EPA-R03-OAR-2015-0656 Justice, and People Against Neighborhood Industrial Contamination Seth L. Circuit Rule 28 a 1 , Environmental Intervenors Sierra Club, Citizens for Environmental Justice, People Rule 26.1, Environmental Intervenors Sierra Club, Citizens for Environmental Justice, People Against Environmental Intervenors Citizens for Environmental Justice and People Against Neighborhood Industrial justice communities from Alabama, Louisiana, Tennessee, and Arkansas in support of rule .
Comment on EPA-R03-OAR-2020-0189-0001 EPA-R03-OAR-2020-0189 EPA has a moral duty to take Environmental Justice into consideration for sources like this!
NC NSR/PSD Revision - NRDC Accompaniment (Att 7-pt3) EPA-R04-OAR-2005-0534 New Tools for Environmental Justice Articulating a New Health Effects Challenge to Emissions Trading , Office of Environmental Justice .
NC NSR/PSD Revision - NRDC Accompaniment (Att 7-pt2) EPA-R04-OAR-2005-0534 The NSR process raises four critical issues for environmental justice advocates Preserving NSR, to ensure that emissions are reduced when a facility in an environmental justice community is modified justice communities . Environmental justice advocates maintain that NSR is an important regulatory program for protecting Lack of Fairness for Communities Grassroots groups and environmental justice advocates assert that
Comment on FR Doc # 05-23417 EPA-R04-OAR-2005-GA-0005 Executive Order 12898 Environmental Justice Is Violated by the Proposed Rule Brunswick, Georgia, Justice community under Executive Order 12898 Environmental Justice. Executive Order 12898 sets forth strategies the EPA should use in Environmental Justice communities. The intent of EPA R04 OAR 2005 GA 0005 0001 is to frustrate the efforts of an Environmental Justice community Executive Order 12898 Environmental Justice states 1 103. Development of Agency Strategies a.
Public Comment - Attachment part 2 EPA-R04-OAR-2006-0649 . . . . . . . . . . . . . . . . . . . 71 4.D 4 Concerns of Environmental Justice Organizations . . ensure that emissions are reduced when a facility in an environmental justice community is modified Environmental justice advocates maintain that NSR is an important regulatory program for protecting Lack of Fairness for Communities Grassroots groups and environmental justice advocates assert that , Office of Environmental Justice .
Comment on EPA-R04-OAR-2007-0085-0014 EPA-R04-OAR-2007-0085 along roadways, railways and at ports; and take into consideration the impacts of their decisions on environmental justice communities through increased analysis, better science, and enhanced community engagement
Robert Ukeiley’s comment on South Carolina’s Proposed Rule EPA-R04-OAR-2010-0958 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, VerDate Mar<15>2010 19 10 Oct 19, 2010

Proposed rules that did address EJ

# ej-data-ejPR

# Final Rules that where ej was mentioned in the NPRM
ejFRejPR <- allFR %>% 
  filter(#docket_id %in% allPR$docket_id,
         ej_fr,
         ej_pr)

# final rule text where the pr did address ej
change <- ejFR %>% select(docket_id, final = summary) %>% 
  distinct() %>% 
  left_join(ejPR %>% 
              select(docket_id, draft = summary) %>% distinct() ) %>% 
  filter(!is.na(draft))

# indicators 

# is there a comment mentioning ej
change %<>% mutate(ej_comment = docket_id %in% ejcomments$docket_id)

# did the final rule change
change %<>% mutate(change = !str_detect(draft, fixed(final, ignore_case = T) ))
  

change %>% 
  select(docket_id, draft, final, ej_comment, change) %>% kablebox()
docket_id draft final ej_comment change
EPA-R07-OAR-2007-0655 Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and CAMR, EPA lacks the discretionary authority to modify today s regulatory decision on the basis of environmental justice considerations. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. </td> <td style="text-align:left;"> Executive Order 12898,Federal Actions to Address Environmental Justice in Minority Populations and CAMR, EPA lacks the discretionary authority to modify today s regulatory decision on the basis of environmental justice considerations. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. FALSE FALSE
EPA-HQ-OAR-2006-0360 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high FALSE FALSE
EPA-HQ-OAR-2006-0424 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high FALSE FALSE
EPA-HQ-OAR-2006-0940 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high FALSE FALSE
EPA-HQ-OPP-2007-0036 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-HQ-OPP-2007-0097 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-HQ-OW-2002-0043 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice Environmental Justice Pursuant to Executive Order 12898 59FR 7629, February 16, 1994 .The Agency has considered environmental justice related issues with regard to the potential impacts of this action TRUE TRUE
EPA-HQ-OPP-2004-0387 Therefore, under Executive Order 12898, entitled Federal Actions to Address Environmental Justice require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-HQ-OPPT-2004-0090 environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Executive Order 12898 Pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , the Agency FALSE TRUE
EPA-HQ-OAR-2002-0076 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and other statutory and executive order requirements. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice TRUE TRUE
EPA-HQ-OAR-2002-0076 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate The EPA believes that this proposed rule should not raise any environmental justice issues. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and other statutory and executive order requirements. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice TRUE TRUE
EPA-R05-OAR-2006-0046 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required FALSE TRUE
EPA-HQ-OPP-2006-0586 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-R05-OAR-2006-0563 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Environmental Justice Executive Order 12898 establishes a Federal policy for incorporating environmental justice into Federal agency actions by directing agencies to identify FALSE TRUE
EPA-HQ-OPP-2006-0253 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 and Phase 2 Rules should not raise any environmental justice issues ; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 2 Rule does not raise any environmental justice issues See 70 FR at justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice TRUE TRUE
EPA-HQ-OAR-2003-0053 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> TRUE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OAR-2003-0053 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act. 2. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> TRUE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OAR-2003-0053 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA . Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses Review Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> TRUE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OPPT-2002-0031 </td> <td style="text-align:left;"> This action does not involve special considerations of environmental justice related issues as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations </td> <td style="text-align:left;"> This action does not involve special considerations of environmental justice related issues as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> FALSE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OPP-2006-0483 </td> <td style="text-align:left;"> any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> FALSE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OPP-2007-0261 </td> <td style="text-align:left;"> special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OW-2007-0259 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-SFUND-2004-0004 </td> <td style="text-align:left;"> Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy , OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United </td> <td style="text-align:left;"> Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy , OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> FALSE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OPP-2002-0043 </td> <td style="text-align:left;"> require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> FALSE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OAR-2004-0013 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA . Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses Review </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that this final rule should not raise any environmental justice issues. K. </td> <td style="text-align:left;"> TRUE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OECA-2002-0004 </td> <td style="text-align:left;"> 128 Thursday, July 3, 2003 Proposed Rules Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Nor does it require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority </td> <td style="text-align:left;"> any special considerations under Executive Order Set. 12898. entitled Federal Actions to Address Environmental Justice in 19.3 Reserved Minority Populations and Low Income Populations 59 7629 16 Authority </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OAR-2005-0083 </td> <td style="text-align:left;"> Executive Order 12898 Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations And Low income Populations Environmental Justice , directs us to incorporate environmental justice as part of our overall mission by identifying and addressing disproportionately high and adverse </td> <td style="text-align:left;"> 12898 In accordance with the terms of Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations And Low income Populations Environmental Justice , directs us to incorporate environmental justice as part of our overall mission by identifying and </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-RCRA-1998-0039 </td> <td style="text-align:left;"> Environmental justice. Under Executive Order 12898. Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report. and National Environmental justice Advisory Council, EPA has undertaken to incorporate environmental justice EPA concluded that HWIR media will advance environmental justice. as iollows By encouraging the </td> <td style="text-align:left;"> Executive Order 12898 Environmental Justice C. Unfunded Mandates Reform Act D. April 1995, Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report , and National Environmental Justice Advisory Council, EPA has undertaken incorporation of environmental EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental EPA has concluded that today s final rule will potentially advance environmental justice causes. </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-RCRA-1998-0039 </td> <td style="text-align:left;"> Environmental Justice 9. Permits Improvement Team Ill. Corrective Action Implementation A. Public Involvement and Environmental Justice G. Public Participation and Environmental Justice G. When Permits Can Be Terminated H. Environmental Justice Executive Order 12898, Federal Action to Address Environmental Justice in Environmental Justice EPA is committed to providing meaningful public participation in all aspects </td> <td style="text-align:left;"> Executive Order 12898 Environmental Justice C. Unfunded Mandates Reform Act D. April 1995, Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report , and National Environmental Justice Advisory Council, EPA has undertaken incorporation of environmental EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental EPA has concluded that today s final rule will potentially advance environmental justice causes. </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-RCRA-2000-0009 </td> <td style="text-align:left;"> Executive Order 12898 Environmental Justice G. Executive Order 12898 Environmental Justice Executive Order 12898 Federal Actions To Address Environmental a Federal policy for incorporating environmental justice into Federal agency missions by directing A meeting summary for the March 12 , 1998 Environmental Justice stakeholders meeting US EPA, 1998b Environmental Justice 42032 at 43045. August 6, 1998. US EPA. 19985. </td> <td style="text-align:left;"> VI11 Two of the constituents of concern addressing environmental justice concerns and does consider Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice Advisory Council, EPA has undertaken to incorporate environmental environmental justice initiatives to enhance environmental quality for all residents of the United </td> <td style="text-align:left;"> FALSE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-R09-OAR-2006-0583 </td> <td style="text-align:left;"> Executive Order 12898 establishes a Federal policy for incorporating environmental justice into Federal </td> <td style="text-align:left;"> Environmental Justice B. The Clean Data Policy C. New Particulate Matter PM NAAQS D. Environmental Justice Comment 1 EPA received comments arguing that its process for making this determination did not adequately consider EPA s environmental justice missionto achieve equal Response EPA is committed to environmental justice, and a November 2005 memorandum by Administrator The gist of the environmental justice argument is that EPA has not adequately investigated and analyzed TRUE TRUE
EPA-HQ-OPP-2006-0307 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-R06-OAR-2005-TX-0033 Equity Element Two Environmental Justice. The environmental justice element applies if the EIP covers VOCs and could disproportionately impact has evaluated the HECT with respect to the HAP Framework and EIP Guidance and determined that the environmental justice element of equity has been met. As an added measure that demonstrates general equity and environmental justice, TCEQ has developed justice and the HECT program. Justice as found in Executive Order 12898. In our proposed approval of the HECT program, we stated that ``environmental justice concerns arise This revised language does not alter our determination that the HECT program does not raise environmental justice concerns. Comment FALSE TRUE
EPA-HQ-RCRA-2003-0001 Executive Order 12898 Environmental Justice I. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Population February 11, 1994 , is EPA is committed to addressing environmental justice concerns and has assumed a leadership role in Justice Task Force to analyze the array of environmental justice issues specific to waste programs Executive Order 12898 Environmental Justice I. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations February 11, 1994 , is EPA is committed to environmental justice for all citizens and has assumed a leadership role in such FALSE TRUE
EPA-HQ-RCRA-2003-0001 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental justice initiatives to enhance environmental quality Justice Task Force to analyze the array of environmental justice issues specific to waste programs and related to potential environmental justice concerns or impacts, including information and data on facilities Executive Order 12898 Environmental Justice I. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations February 11, 1994 , is EPA is committed to environmental justice for all citizens and has assumed a leadership role in such FALSE TRUE
EPA-HQ-RCRA-2001-0022 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental justice initiatives to enhance environmental quality Justice Task Force to analyze the array of environmental justice issues specific to waste programs and related to potential environmental justice concerns or impacts, including information and data on facilities Executive Order 12898 Environmental justice Federal policy for incorporating environmental justice The Agency has considered environmental justice related issues concerning the potential impacts of with the Environmental Justice Executive Order which requires the Agency.to consider environmental justice issues in the rulemaking and to consult with Environmental Justice EJ stakeholders. justice issues. FALSE TRUE
EPA-HQ-RCRA-2001-0022 What Consideration Was Given to Environmental Justice Under Executive Order 12898 E. qualitative benefits, children s health, unfunded mandates, regulatory takings, federalism, and environmental justice. What onsidemtion ,Was Given to Environmental Justice, ? Executive Order 12898 Environmental justice Federal policy for incorporating environmental justice The Agency has considered environmental justice related issues concerning the potential impacts of with the Environmental Justice Executive Order which requires the Agency.to consider environmental justice issues in the rulemaking and to consult with Environmental Justice EJ stakeholders. justice issues. FALSE TRUE
EPA-HQ-OPP-2005-0069 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-HQ-OPP-2006-0731 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-SFUND-2002-0007 Today s action does not involve special consideration of environmental justice related issues as required Today s action does not involve special consideration of environmental justice related issues as required FALSE FALSE
EPA-HQ-OPP-2006-0056 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-HQ-OPPT-2004-0130 considerations of environmental justice issues pursuant to E.O. 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Moreover, it does not involve special considerations of environmental justice related issues as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations FALSE TRUE
EPA-HQ-OPPT-2004-0130 considerations of environmental justice issues pursuant to E.O. 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 5 9 FR 7629, February 16, 1 9 9 4 . today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 Executive Order 12898 Environmental Justice G. 12898 Environment& Justice EKecutive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission I by identifying and addressing, as , appropriate, disproportionately today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 Executive Order 13045 applies to Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionately high today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by 33.0, 12898 59 FR 7629, February 16, 1994 . today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE FALSE
EPA-HQ-OAR-2001-0011 Executive Order 12898 Environmental Justice In addition, since today s action is only a technical amendment, this action does not involve special consideration of environmental justice related issues today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 Executive Order 12898 Environmental Justice F. E, Executive Order 12898 Environmental Justice In addition, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice In addition, this action does not involve special consideration of environmental justice related issues as required by Executive Order 12898 59 FR 7629, February today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 Order 13132 Federalism Executive Order 13034 with Indian Tribal Governments Executive Order 12893 Environmental Justice Regulatory Flexibility Acz RFA , as amended by the Small Business Regulatory Enforcement Executive Order 12898 Environmental Justice The same is true of today s In addition, this action today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 Protection of Children from Environmental Health Risks and Safety Risks; Executive Order 12898 Environmental Justice; Executive Order 12875 Enhancing the Intergovernmental Partnerships; Executive Order 13084 today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OAR-2001-0011 F, Executive Order 12898 Environmental Justice I L Executive Order 12898 requires that. each Federal agency 6 6 8 make achieving environmental justice part of its mission by identifying and addressing today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OPP-2006-0561 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 and Phase 2 Rules should not raise any environmental justice issues ; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 2 Rule does not raise any environmental justice issues See 70 FR at justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. TRUE TRUE
EPA-HQ-TRI-2004-0001 Environmental Justice I. What Is EPA s Statutory Authority for Taking These Actions? Environmental Justice Under Executive Order 12898, Federal Actions to Address Environmental Justice justice into its policies and programs. EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United Environmental Justice Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations , EPA has undertaken to incorporate environmental justice into its policies and programs. EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United TRUE TRUE
EPA-HQ-OPP-2005-0251 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-HQ-OW-2004-0040 Environmental Justice G . Risk to Children Analysis H. Environmental Justice Pursuant to Executive Order 12898 59 FR 7629, February 16, 1994 , The Agency has considered environmental justice related issues with regard to the potential impacts of this action Paperwork Reduction Act Enhancing the Intergovernmental Partnership Unfunded Mandates Reform Act Environmental Justice Risk to Children Analysis National Technology Transfer and Advancement Act Submission to Environmental Justice Pursuant to Executive Order 12898 59 FR 7629, February 16, 1994 1, The Agency has considered environmental justice related issues with regard to the potential impacts of this action FALSE TRUE
EPA-HQ-OPPT-2002-0054 Pursuant to Executive Order 12898 59 FR 7629, February 16, 1994 , entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, the Agency has considered environmental Executive Order 12898 entitled Federal Actions to Address Environmental Justice in Minority Populations FALSE TRUE
EPA-HQ-OPPT-2004-0090 environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-OPPT-2004-0130 considerations of environmental justice issues pursuant to E.O. 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . FALSE TRUE
EPA-HQ-SFUND-2004-0001 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice EPA is committed to addressing environmental justice concerns and has assumed a leadership role in Justice Task Force to analyze the array of environmental justice issues specific to waste programs Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and EPA is committed to addressing environmental justice concerns and has assumed a leadership role in environmental justice initiatives to enhance environmental quality for all citizens of the United Justice Task Force to analyze the array of environmental justice issues specific to waste programs TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 and Phase 2 Rules should not raise any environmental justice issues ; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. TRUE TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 2 Rule does not raise any environmental justice issues See 70 FR at justice issues. Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. TRUE TRUE
EPA-HQ-OPP-2005-0160 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-HQ-RCRA-2001-0022 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental justice initiatives to enhance environmental quality Justice Task Force to analyze the array of environmental justice issues specific to waste programs and related to potential environmental justice concerns or impacts, including information and data on facilities Executive Order 12898 Environmental Justice H. justice and children s health. 1. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental EPA is committed to addressing environmental justice concerns and has assumed a leadership role in environmental Justice Task Force to analyze the array of environmental justice issues specific to waste programs and FALSE TRUE
EPA-HQ-RCRA-2001-0022 What Consideration Was Given to Environmental Justice Under Executive Order 12898 E. qualitative benefits, children s health, unfunded mandates, regulatory takings, federalism, and environmental justice. What onsidemtion ,Was Given to Environmental Justice, ? Executive Order 12898 Environmental Justice H. justice and children s health. 1. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental EPA is committed to addressing environmental justice concerns and has assumed a leadership role in environmental Justice Task Force to analyze the array of environmental justice issues specific to waste programs and FALSE TRUE
EPA-HQ-OW-2004-0040 Environmental Justice G . Risk to Children Analysis H. Environmental Justice Pursuant to Executive Order 12898 59 FR 7629, February 16, 1994 , The Agency has considered environmental justice related issues with regard to the potential impacts of this action Executive Order 12898 Environmental Justice G. Executive Order 12898 Environmental Justice Executive Order 12898 Federal Actions To Address Environmental a Federal policy for incorporating environmental justice into Federal agency missions by directing agencies A meeting summary for the March 12, 1998 Environmental Justice stakeholders meeting USEPA 1998J is Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, FALSE TRUE
EPA-HQ-OPP-2007-0187 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-HQ-OPP-2005-0459 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-HQ-OPP-2006-0230 Page 25997 special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-HQ-OPP-2006-0232 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-HQ-OPP-2005-0322 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE FALSE
EPA-R06-OAR-2005-TX-0023 The equity principle consists of both general equity and environmental justice. Environmental justice concerns can arise when a final EPA rule, such as a trading program, could result Therefore, the HGB MECT does not have the potential to cause environmental justice concerns. The TCEQ will consider potential environmental justice concerns during this approval process. Although we disagree that the MECT raises environmental justice concerns, GHASP s comment about the Because of our conclusion that a NOX trading program does not raise particular environmental justice FALSE TRUE
EPA-R06-OAR-2005-TX-0023 The rule does not involve special consideration of environmental justice related issues as required by Environmental justice concerns can arise when a final EPA rule, such as a trading program, could result Therefore, the HGB MECT does not have the potential to cause environmental justice concerns. The TCEQ will consider potential environmental justice concerns during this approval process. Although we disagree that the MECT raises environmental justice concerns, GHASP s comment about the Because of our conclusion that a NOX trading program does not raise particular environmental justice FALSE TRUE
EPA-R06-OAR-2007-0651 Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. standard, EPA lacks the discretionary authority to modify today s regulatory decision on the basis of environmental justice considerations. Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. standard, EPA lacks the discretionary authority to modify today s regulatory decision on the basis of environmental justice considerations. FALSE FALSE
EPA-HQ-RCRA-2002-0025 Environmental Justice Executive Order 12898 E. Environmental Justice Executive Order 12898 Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, February 11, 1994, requires that regulatory actions be accompanied by an environmental justice analysis. The Agency has determined that the proposed action does not raise environmental justice concerns. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice justice analysis. The Agency has determined that the action does not raise environmental justice concerns. FALSE TRUE
EPA-HQ-SFUND-2000-0003 Environmental justice. EPA seeks to achieve environmental justice, the fair treatment and meaningful involvement of any group To help address potential environmental justice issues, the Agency seeks information on any groups Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice Advisory Council, EPA has undertaken to incorporate environmental justice into its policies and programs. EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental FALSE TRUE
EPA-HQ-OPP-2005-0487 special considerations under Executive Order 12898, entitled Federal Actions to Page 4089 Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-R05-OAR-2006-0891 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required FALSE TRUE
EPA-R05-OAR-2006-0892 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required FALSE TRUE
EPA-R03-OAR-2006-0692 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required FALSE TRUE
EPA-HQ-OPPT-2004-0090 environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Moreover, it does not involve special considerations of environmental justice related issues as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations FALSE TRUE
EPA-HQ-OPP-2006-0175 that require special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , or require that require special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , or require FALSE FALSE
EPA-R03-OAR-2006-0682 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required FALSE TRUE
EPA-HQ-OPP-2006-0036 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-HQ-OPP-2006-0495 any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE TRUE
EPA-R03-OAR-2006-0817 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required FALSE TRUE
EPA-HQ-OPPT-2003-0061 G.E.uecutive Order 12898 Pursuant to Executive Order 12898, entitled Federul Actions to Address Environmental Justice in Minority Populcitions and Low Income Populations 59 FR 7629, February 16, 1994 , the Agency has considered environmental justice related issues with regard to the potential impacts of Executive Order 12898 Pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , EPA has considered environmental justice related issues with regard to the potential impacts of this action FALSE TRUE
EPA-HQ-OAR-2001-0008 , 1993 or Executive Order 13084 63 FR 27655 May 10, 1998 , or involve special consideration of environmental justice related issues as required by Executive Order 12898 59 FR 7629, February 16, 1994 . Executive Order 12898 Environmental Justice In addition,, this action does not involve special consideration of environmental justice related issues as required by Executive Order 12898 59 FR 7629, February FALSE TRUE
change %>% 
  select(docket_id, draft, final, change) %>% kablebox()
docket_id draft final change
EPA-R07-OAR-2007-0655 Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and CAMR, EPA lacks the discretionary authority to modify today s regulatory decision on the basis of environmental justice considerations. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. </td> <td style="text-align:left;"> Executive Order 12898,Federal Actions to Address Environmental Justice in Minority Populations and CAMR, EPA lacks the discretionary authority to modify today s regulatory decision on the basis of environmental justice considerations. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. FALSE
EPA-HQ-OAR-2006-0360 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high FALSE
EPA-HQ-OAR-2006-0424 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high FALSE
EPA-HQ-OAR-2006-0940 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high FALSE
EPA-HQ-OPP-2007-0036 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-HQ-OPP-2007-0097 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-HQ-OW-2002-0043 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice Environmental Justice Pursuant to Executive Order 12898 59FR 7629, February 16, 1994 .The Agency has considered environmental justice related issues with regard to the potential impacts of this action TRUE
EPA-HQ-OPP-2004-0387 Therefore, under Executive Order 12898, entitled Federal Actions to Address Environmental Justice require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-HQ-OPPT-2004-0090 environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Executive Order 12898 Pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , the Agency TRUE
EPA-HQ-OAR-2002-0076 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and other statutory and executive order requirements. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice TRUE
EPA-HQ-OAR-2002-0076 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate The EPA believes that this proposed rule should not raise any environmental justice issues. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and other statutory and executive order requirements. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice TRUE
EPA-R05-OAR-2006-0046 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required TRUE
EPA-HQ-OPP-2006-0586 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-R05-OAR-2006-0563 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high Executive Order 12898 Environmental Justice Executive Order 12898 establishes a Federal policy for incorporating environmental justice into Federal agency actions by directing agencies to identify TRUE
EPA-HQ-OPP-2006-0253 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 and Phase 2 Rules should not raise any environmental justice issues ; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 2 Rule does not raise any environmental justice issues See 70 FR at justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice TRUE
EPA-HQ-OAR-2003-0053 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OAR-2003-0053 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act. 2. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OAR-2003-0053 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA . Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses Review Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OPPT-2002-0031 </td> <td style="text-align:left;"> This action does not involve special considerations of environmental justice related issues as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations </td> <td style="text-align:left;"> This action does not involve special considerations of environmental justice related issues as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations </td> <td style="text-align:left;"> FALSE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OPP-2006-0483 </td> <td style="text-align:left;"> any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> FALSE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OPP-2007-0261 </td> <td style="text-align:left;"> special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OW-2007-0259 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-SFUND-2004-0004 </td> <td style="text-align:left;"> Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy , OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United </td> <td style="text-align:left;"> Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy , OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United </td> <td style="text-align:left;"> FALSE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OPP-2002-0043 </td> <td style="text-align:left;"> require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB </td> <td style="text-align:left;"> FALSE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OAR-2004-0013 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA . Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses Review </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that this final rule should not raise any environmental justice issues. K. </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OECA-2002-0004 </td> <td style="text-align:left;"> 128 Thursday, July 3, 2003 Proposed Rules Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Nor does it require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority </td> <td style="text-align:left;"> any special considerations under Executive Order Set. 12898. entitled Federal Actions to Address Environmental Justice in 19.3 Reserved Minority Populations and Low Income Populations 59 7629 16 Authority </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-OAR-2005-0083 </td> <td style="text-align:left;"> Executive Order 12898 Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations And Low income Populations Environmental Justice , directs us to incorporate environmental justice as part of our overall mission by identifying and addressing disproportionately high and adverse </td> <td style="text-align:left;"> 12898 In accordance with the terms of Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations And Low income Populations Environmental Justice , directs us to incorporate environmental justice as part of our overall mission by identifying and </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-RCRA-1998-0039 </td> <td style="text-align:left;"> Environmental justice. Under Executive Order 12898. Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report. and National Environmental justice Advisory Council, EPA has undertaken to incorporate environmental justice EPA concluded that HWIR media will advance environmental justice. as iollows By encouraging the </td> <td style="text-align:left;"> Executive Order 12898 Environmental Justice C. Unfunded Mandates Reform Act D. April 1995, Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report , and National Environmental Justice Advisory Council, EPA has undertaken incorporation of environmental EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental EPA has concluded that today s final rule will potentially advance environmental justice causes. </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-RCRA-1998-0039 </td> <td style="text-align:left;"> Environmental Justice 9. Permits Improvement Team Ill. Corrective Action Implementation A. Public Involvement and Environmental Justice G. Public Participation and Environmental Justice G. When Permits Can Be Terminated H. Environmental Justice Executive Order 12898, Federal Action to Address Environmental Justice in Environmental Justice EPA is committed to providing meaningful public participation in all aspects </td> <td style="text-align:left;"> Executive Order 12898 Environmental Justice C. Unfunded Mandates Reform Act D. April 1995, Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report , and National Environmental Justice Advisory Council, EPA has undertaken incorporation of environmental EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental EPA has concluded that today s final rule will potentially advance environmental justice causes. </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-HQ-RCRA-2000-0009 </td> <td style="text-align:left;"> Executive Order 12898 Environmental Justice G. Executive Order 12898 Environmental Justice Executive Order 12898 Federal Actions To Address Environmental a Federal policy for incorporating environmental justice into Federal agency missions by directing A meeting summary for the March 12 , 1998 Environmental Justice stakeholders meeting US EPA, 1998b Environmental Justice 42032 at 43045. August 6, 1998. US EPA. 19985. </td> <td style="text-align:left;"> VI11 Two of the constituents of concern addressing environmental justice concerns and does consider Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice Advisory Council, EPA has undertaken to incorporate environmental environmental justice initiatives to enhance environmental quality for all residents of the United </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;"> EPA-R09-OAR-2006-0583 </td> <td style="text-align:left;"> Executive Order 12898 establishes a Federal policy for incorporating environmental justice into Federal </td> <td style="text-align:left;"> Environmental Justice B. The Clean Data Policy C. New Particulate Matter PM NAAQS D. Environmental Justice Comment 1 EPA received comments arguing that its process for making this determination did not adequately consider EPA s environmental justice missionto achieve equal Response EPA is committed to environmental justice, and a November 2005 memorandum by Administrator The gist of the environmental justice argument is that EPA has not adequately investigated and analyzed TRUE
EPA-HQ-OPP-2006-0307 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-R06-OAR-2005-TX-0033 Equity Element Two Environmental Justice. The environmental justice element applies if the EIP covers VOCs and could disproportionately impact has evaluated the HECT with respect to the HAP Framework and EIP Guidance and determined that the environmental justice element of equity has been met. As an added measure that demonstrates general equity and environmental justice, TCEQ has developed justice and the HECT program. Justice as found in Executive Order 12898. In our proposed approval of the HECT program, we stated that ``environmental justice concerns arise This revised language does not alter our determination that the HECT program does not raise environmental justice concerns. Comment TRUE
EPA-HQ-RCRA-2003-0001 Executive Order 12898 Environmental Justice I. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Population February 11, 1994 , is EPA is committed to addressing environmental justice concerns and has assumed a leadership role in Justice Task Force to analyze the array of environmental justice issues specific to waste programs Executive Order 12898 Environmental Justice I. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations February 11, 1994 , is EPA is committed to environmental justice for all citizens and has assumed a leadership role in such TRUE
EPA-HQ-RCRA-2003-0001 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental justice initiatives to enhance environmental quality Justice Task Force to analyze the array of environmental justice issues specific to waste programs and related to potential environmental justice concerns or impacts, including information and data on facilities Executive Order 12898 Environmental Justice I. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations February 11, 1994 , is EPA is committed to environmental justice for all citizens and has assumed a leadership role in such TRUE
EPA-HQ-RCRA-2001-0022 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental justice initiatives to enhance environmental quality Justice Task Force to analyze the array of environmental justice issues specific to waste programs and related to potential environmental justice concerns or impacts, including information and data on facilities Executive Order 12898 Environmental justice Federal policy for incorporating environmental justice The Agency has considered environmental justice related issues concerning the potential impacts of with the Environmental Justice Executive Order which requires the Agency.to consider environmental justice issues in the rulemaking and to consult with Environmental Justice EJ stakeholders. justice issues. TRUE
EPA-HQ-RCRA-2001-0022 What Consideration Was Given to Environmental Justice Under Executive Order 12898 E. qualitative benefits, children s health, unfunded mandates, regulatory takings, federalism, and environmental justice. What onsidemtion ,Was Given to Environmental Justice, ? Executive Order 12898 Environmental justice Federal policy for incorporating environmental justice The Agency has considered environmental justice related issues concerning the potential impacts of with the Environmental Justice Executive Order which requires the Agency.to consider environmental justice issues in the rulemaking and to consult with Environmental Justice EJ stakeholders. justice issues. TRUE
EPA-HQ-OPP-2005-0069 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-HQ-OPP-2006-0731 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-SFUND-2002-0007 Today s action does not involve special consideration of environmental justice related issues as required Today s action does not involve special consideration of environmental justice related issues as required FALSE
EPA-HQ-OPP-2006-0056 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-HQ-OPPT-2004-0130 considerations of environmental justice issues pursuant to E.O. 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Moreover, it does not involve special considerations of environmental justice related issues as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations TRUE
EPA-HQ-OPPT-2004-0130 considerations of environmental justice issues pursuant to E.O. 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 5 9 FR 7629, February 16, 1 9 9 4 . today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 Executive Order 12898 Environmental Justice G. 12898 Environment& Justice EKecutive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission I by identifying and addressing, as , appropriate, disproportionately today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 Executive Order 13045 applies to Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionately high today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by 33.0, 12898 59 FR 7629, February 16, 1994 . today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . FALSE
EPA-HQ-OAR-2001-0011 Executive Order 12898 Environmental Justice In addition, since today s action is only a technical amendment, this action does not involve special consideration of environmental justice related issues today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 Executive Order 12898 Environmental Justice F. E, Executive Order 12898 Environmental Justice In addition, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice In addition, this action does not involve special consideration of environmental justice related issues as required by Executive Order 12898 59 FR 7629, February today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 Order 13132 Federalism Executive Order 13034 with Indian Tribal Governments Executive Order 12893 Environmental Justice Regulatory Flexibility Acz RFA , as amended by the Small Business Regulatory Enforcement Executive Order 12898 Environmental Justice The same is true of today s In addition, this action today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 Protection of Children from Environmental Health Risks and Safety Risks; Executive Order 12898 Environmental Justice; Executive Order 12875 Enhancing the Intergovernmental Partnerships; Executive Order 13084 today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OAR-2001-0011 F, Executive Order 12898 Environmental Justice I L Executive Order 12898 requires that. each Federal agency 6 6 8 make achieving environmental justice part of its mission by identifying and addressing today s action is a technical amendment, this action does not involve special consideration of environmental justice related issues as required by E.O. 12898 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OPP-2006-0561 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 and Phase 2 Rules should not raise any environmental justice issues ; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 2 Rule does not raise any environmental justice issues See 70 FR at justice issues. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. TRUE
EPA-HQ-TRI-2004-0001 Environmental Justice I. What Is EPA s Statutory Authority for Taking These Actions? Environmental Justice Under Executive Order 12898, Federal Actions to Address Environmental Justice justice into its policies and programs. EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United Environmental Justice Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations , EPA has undertaken to incorporate environmental justice into its policies and programs. EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United TRUE
EPA-HQ-OPP-2005-0251 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-HQ-OW-2004-0040 Environmental Justice G . Risk to Children Analysis H. Environmental Justice Pursuant to Executive Order 12898 59 FR 7629, February 16, 1994 , The Agency has considered environmental justice related issues with regard to the potential impacts of this action Paperwork Reduction Act Enhancing the Intergovernmental Partnership Unfunded Mandates Reform Act Environmental Justice Risk to Children Analysis National Technology Transfer and Advancement Act Submission to Environmental Justice Pursuant to Executive Order 12898 59 FR 7629, February 16, 1994 1, The Agency has considered environmental justice related issues with regard to the potential impacts of this action TRUE
EPA-HQ-OPPT-2002-0054 Pursuant to Executive Order 12898 59 FR 7629, February 16, 1994 , entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, the Agency has considered environmental Executive Order 12898 entitled Federal Actions to Address Environmental Justice in Minority Populations TRUE
EPA-HQ-OPPT-2004-0090 environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-OPPT-2004-0130 considerations of environmental justice issues pursuant to E.O. 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . TRUE
EPA-HQ-SFUND-2004-0001 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice EPA is committed to addressing environmental justice concerns and has assumed a leadership role in Justice Task Force to analyze the array of environmental justice issues specific to waste programs Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and EPA is committed to addressing environmental justice concerns and has assumed a leadership role in environmental justice initiatives to enhance environmental quality for all citizens of the United Justice Task Force to analyze the array of environmental justice issues specific to waste programs TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 and Phase 2 Rules should not raise any environmental justice issues ; for the same reasons, this proposal should not raise any environmental justice issues. Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. TRUE
EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 2 Rule does not raise any environmental justice issues See 70 FR at justice issues. Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. TRUE
EPA-HQ-OPP-2005-0160 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-HQ-RCRA-2001-0022 Executive Order 12898 Environmental Justice F. Executive Order 12898 Environmental Justice EPA is committed to addressing environmental justice concerns and is assuming a leadership role in environmental justice initiatives to enhance environmental quality Justice Task Force to analyze the array of environmental justice issues specific to waste programs and related to potential environmental justice concerns or impacts, including information and data on facilities Executive Order 12898 Environmental Justice H. justice and children s health. 1. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental EPA is committed to addressing environmental justice concerns and has assumed a leadership role in environmental Justice Task Force to analyze the array of environmental justice issues specific to waste programs and TRUE
EPA-HQ-RCRA-2001-0022 What Consideration Was Given to Environmental Justice Under Executive Order 12898 E. qualitative benefits, children s health, unfunded mandates, regulatory takings, federalism, and environmental justice. What onsidemtion ,Was Given to Environmental Justice, ? Executive Order 12898 Environmental Justice H. justice and children s health. 1. Executive Order 12898 Environmental Justice Executive Order 12898, Federal Actions to Address Environmental EPA is committed to addressing environmental justice concerns and has assumed a leadership role in environmental Justice Task Force to analyze the array of environmental justice issues specific to waste programs and TRUE
EPA-HQ-OW-2004-0040 Environmental Justice G . Risk to Children Analysis H. Environmental Justice Pursuant to Executive Order 12898 59 FR 7629, February 16, 1994 , The Agency has considered environmental justice related issues with regard to the potential impacts of this action Executive Order 12898 Environmental Justice G. Executive Order 12898 Environmental Justice Executive Order 12898 Federal Actions To Address Environmental a Federal policy for incorporating environmental justice into Federal agency missions by directing agencies A meeting summary for the March 12, 1998 Environmental Justice stakeholders meeting USEPA 1998J is Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, TRUE
EPA-HQ-OPP-2007-0187 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-HQ-OPP-2005-0459 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-HQ-OPP-2006-0230 Page 25997 special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-HQ-OPP-2006-0232 require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-HQ-OPP-2005-0322 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB FALSE
EPA-R06-OAR-2005-TX-0023 The equity principle consists of both general equity and environmental justice. Environmental justice concerns can arise when a final EPA rule, such as a trading program, could result Therefore, the HGB MECT does not have the potential to cause environmental justice concerns. The TCEQ will consider potential environmental justice concerns during this approval process. Although we disagree that the MECT raises environmental justice concerns, GHASP s comment about the Because of our conclusion that a NOX trading program does not raise particular environmental justice TRUE
EPA-R06-OAR-2005-TX-0023 The rule does not involve special consideration of environmental justice related issues as required by Environmental justice concerns can arise when a final EPA rule, such as a trading program, could result Therefore, the HGB MECT does not have the potential to cause environmental justice concerns. The TCEQ will consider potential environmental justice concerns during this approval process. Although we disagree that the MECT raises environmental justice concerns, GHASP s comment about the Because of our conclusion that a NOX trading program does not raise particular environmental justice TRUE
EPA-R06-OAR-2007-0651 Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. standard, EPA lacks the discretionary authority to modify today s regulatory decision on the basis of environmental justice considerations. Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. standard, EPA lacks the discretionary authority to modify today s regulatory decision on the basis of environmental justice considerations. FALSE
EPA-HQ-RCRA-2002-0025 Environmental Justice Executive Order 12898 E. Environmental Justice Executive Order 12898 Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, February 11, 1994, requires that regulatory actions be accompanied by an environmental justice analysis. The Agency has determined that the proposed action does not raise environmental justice concerns. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice justice analysis. The Agency has determined that the action does not raise environmental justice concerns. TRUE
EPA-HQ-SFUND-2000-0003 Environmental justice. EPA seeks to achieve environmental justice, the fair treatment and meaningful involvement of any group To help address potential environmental justice issues, the Agency seeks information on any groups Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations, as well as through EPA s April 1995, Environmental Justice Strategy, OSWER Environmental Justice Task Force Action Agenda Report, and National Environmental Justice Advisory Council, EPA has undertaken to incorporate environmental justice into its policies and programs. EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental TRUE
EPA-HQ-OPP-2005-0487 special considerations under Executive Order 12898, entitled Federal Actions to Page 4089 Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-R05-OAR-2006-0891 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required TRUE
EPA-R05-OAR-2006-0892 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required TRUE
EPA-R03-OAR-2006-0692 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required TRUE
EPA-HQ-OPPT-2004-0090 environmental justice related issues pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . Moreover, it does not involve special considerations of environmental justice related issues as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations TRUE
EPA-HQ-OPP-2006-0175 that require special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , or require that require special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , or require FALSE
EPA-R03-OAR-2006-0682 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required TRUE
EPA-HQ-OPP-2006-0036 special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-HQ-OPP-2006-0495 any special considerations as required by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB require any special considerations under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 ; or OMB TRUE
EPA-R03-OAR-2006-0817 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high The rule also does not involve special consideration of environmental justice related issues as required TRUE
EPA-HQ-OPPT-2003-0061 G.E.uecutive Order 12898 Pursuant to Executive Order 12898, entitled Federul Actions to Address Environmental Justice in Minority Populcitions and Low Income Populations 59 FR 7629, February 16, 1994 , the Agency has considered environmental justice related issues with regard to the potential impacts of Executive Order 12898 Pursuant to Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , EPA has considered environmental justice related issues with regard to the potential impacts of this action TRUE
EPA-HQ-OAR-2001-0008 , 1993 or Executive Order 13084 63 FR 27655 May 10, 1998 , or involve special consideration of environmental justice related issues as required by Executive Order 12898 59 FR 7629, February 16, 1994 . Executive Order 12898 Environmental Justice In addition,, this action does not involve special consideration of environmental justice related issues as required by Executive Order 12898 59 FR 7629, February TRUE
# logical
change01 <- change %>% 
  distinct(docket_id, change) %>%
  # dedupe
  group_by(docket_id) %>% 
  slice_max(change) %>% #TODO sensitivity analysis 
  ungroup() 

ejFRejPR %<>% left_join(change01) 

ejFRejPR %>% count(change, ej_comment) %>% kablebox()
change ej_comment n
FALSE FALSE 448
FALSE TRUE 82
TRUE FALSE 977
TRUE TRUE 378
ejFRejPR %<>% filter(!is.na(change)) #TODO investigate NAs

Percent where the final rule did change how it addressed EJ

#ejejPR-winrate

winrate <- ejFRejPR %>% 
  count(ej_comment, change) %>% 
  group_by(ej_comment) %>% #FIXME make nice table with percents
  spread(change, n) %>% 
  mutate(percent = round(`TRUE`/(`FALSE`+`TRUE`)*100 ))

winrate %>% kablebox()
ej_comment FALSE TRUE percent
FALSE 448 977 69
TRUE 82 378 82
ejFRejPR %>% 
  count(ej_comment, change) %>% 
  left_join(winrate) %>%
  group_by(ej_comment) %>% 
  mutate(mean = mean(c(`TRUE`, `FALSE`)),
        EJ_comment = ifelse(ej_comment, "EJ Raised by Commenters", "EJ not Raised by Commenters")) %>% 
  ggplot() + 
  aes(x = EJ_comment, 
      y = n, 
      fill = change, 
      label = ifelse(change == ej_comment, percent, NA) %>% str_c("%") ) +
  geom_col(alpha = .7) + 
  geom_text(aes(y = mean)) + 
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
facet_wrap("EJ_comment", scales = "free") + 
  labs(fill = "EJ section changed\nin Final Rule",
       y = "Proposed Rules") + 
  theme_void() +
  theme(axis.text.y = element_text(),
        axis.title.y = element_text(angle = 90),
        panel.grid.major.y = element_line(color = "grey"))

Model

#ej-mejPR

mejPR <- glm(change ~ ej_comment*log(comments +1) +
                #ej_comments + 
                ej_comments_unique +
              president,
           data = ejFRejPR, 
             family=binomial(link="logit"))

tidy(mejPR) %>% kablebox()
term estimate std.error statistic p.value
(Intercept) 2.111 0.622 3.392 0.001
ej_commentTRUE 0.717 0.243 2.955 0.003
log(comments + 1) -0.147 0.032 -4.631 0.000
ej_comments_unique 0.032 0.014 2.356 0.018
presidentG. W. Bush -0.895 0.641 -1.397 0.162
presidentObama -1.075 0.624 -1.722 0.085
presidentTrump -1.270 0.628 -2.023 0.043
ej_commentTRUE:log(comments + 1) 0.071 0.050 1.425 0.154

By president

# ejejPR-winrate-president-1

winrate <- ejFRejPR %>% 
  count(ej_comment, change, president) %>% 
  group_by(ej_comment) %>% #FIXME make nice table with percents
  spread(change, n) %>% 
    mutate(`FALSE` = replace_na(`FALSE`, 0)) %>%
  mutate(`TRUE` = replace_na(`TRUE`, 0)) %>%
  mutate(percent = round(`TRUE`/(`TRUE`+`FALSE`)*100 ))

winrate %>% kablebox()
ej_comment president FALSE TRUE percent
FALSE Clinton 3 19 86
FALSE G. W. Bush 54 105 66
FALSE Obama 263 581 69
FALSE Trump 128 272 68
TRUE Clinton 0 2 100
TRUE G. W. Bush 3 60 95
TRUE Obama 39 211 84
TRUE Trump 40 105 72
ejFRejPR %>% 
  count(ej_comment, change, president) %>% 
  left_join(winrate) %>%
  group_by(change) %>% 
  mutate(EJ_comment = ifelse(ej_comment, "EJ Comments", "No EJ Comments") ) %>% 
  ggplot() + 
  aes(x = n, y = EJ_comment, 
      fill = change, 
      label = ifelse(change== ej_comment, percent, NA) %>% str_c("%") ) +
  geom_col(alpha = .7) + 
  geom_text(aes(x = `TRUE`), hjust = 0) + 
  facet_wrap("president", scales = "free")+ 
  labs(fill = "EJ section changed\nin Final Rule",
       y = "",
       x = "Proposed Rules that Did Address EJ") + 
  theme(axis.ticks = element_blank(),
        panel.grid.major.y = element_blank())


Predicted Probabilities by President

With the median number of comments, 4

#ej-mejPR-president-median

# A data frame of values at which to estimate probabilities:
values <- ejFRejPR %>% 
  expand(ej_comment,
         #ej_comments = median(ej_comments) %>% round(),
         ej_comments_unique = median(ej_comments_unique) %>% round(),
         comments = #c(min(comments),
                      median(comments) %>% round(),
                      #max(comments)),
         president)

predicted <- augment(mejPR,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     ) %>% 
  left_join(ejFRejPR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))


# As a plot
predicted %>% 
  ggplot() + 
  aes(x = EJ_comment, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                  ymax = .fitted + 1.96*.se.fit), alpha = .7 )  + 
  geom_hline(yintercept = 0, linetype = 2) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  facet_wrap("president", ncol = 1) +
  labs(y = 'Probability of Change in How a Rule\nAddresses "Environmental Justice"', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted change in Final Rules") + 
  theme(axis.text.y = element_blank(),
        axis.ticks.y = element_blank(),
        panel.grid.major.y = element_blank())+
  ylim(0,1) 


With the mean number of comments, 17647

#ej-mejPR-president-mean

# A data frame of values at which to estimate probabilities:
values <- ejFRejPR %>% 
  expand(ej_comment,
         #ej_comments = median(ej_comments) %>% round(),
         ej_comments_unique = mean(ej_comments_unique) %>% round(),
         comments = #c(min(comments),
                      mean(comments) %>% round(),
                      #max(comments)),
         president)

predicted <- augment(mejPR,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     ) %>% 
  left_join(ejFRejPR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))


# As a plot
predicted %>% 
  ggplot() + 
  aes(x = EJ_comment, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                  ymax = .fitted + 1.96*.se.fit), alpha = .7 )  + 
  geom_hline(yintercept = 0, linetype = 2) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  facet_wrap("president", ncol = 1) +
  labs(y = 'Probability of Change in How a Rule\nAddresses "Environmental Justice"', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted Change in Final Rules") + 
  theme(axis.text.y = element_blank(),
        axis.ticks.y = element_blank(),
        panel.grid.major.y = element_blank())+
  ylim(0,1) 


By number of comments

Change in EJ section of the final rule by number of comments

Percent of rules that change when there are more or less than 10 comments.

#ejejPR-winrate-comments

winrate <- ejFRejPR %>% 
  mutate(comments10 = comments > 9) %>% 
  count(change, comments10) %>% 
  group_by(comments10) %>% #FIXME make nice table with percents
  spread(change, n) %>% 
    mutate(`FALSE` = replace_na(`FALSE`, 0)) %>%
  mutate(`TRUE` = replace_na(`TRUE`, 0)) %>%
  mutate(percent = round(`TRUE`/(`TRUE`+`FALSE`)*100 ))

winrate %>% kablebox()
comments10 FALSE TRUE percent
FALSE 332 866 72
TRUE 198 489 71
ejFRejPR %>% 
  mutate(comments10 = comments > 9) %>% 
  count(change, comments10) %>% 
  left_join(winrate) %>%
  mutate(comments = ifelse(comments10, "10 or more comments", "Fewer than 10 comments") ) %>% 
  ggplot() + 
  aes(x = n, y = comments, 
      fill = change, 
      label = percent %>% str_c("%")  ) +
  geom_col(alpha = .7) + 
  geom_text(aes(x = `TRUE`), hjust = 0, check_overlap = T) + 
  #facet_wrap("president", scales = "free")+ 
  labs(fill = "EJ section changed\nin Final Rule",
       x = "Proposed Rules that Did Address EJ",
       y = "")

Predicted Probabilities by Number of Comments

Estimates across numbers of comments received.

#ej-mejPR-comments

# A data frame of values at which to estimate probabilities:
values <- ejFRejPR %>% 
  expand(comments = c(1,10,100,1000,10000) ,
         ej_comment,
         ej_comments_unique = median(ej_comments_unique),
         president = "Obama")

predicted <- augment(mejPR,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     ) %>% 
  left_join(ejFRejPR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))


# As a plot
predicted %>% 
  ggplot() + 
  aes(x = factor(comments), y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                  ymax = .fitted + 1.96*.se.fit), alpha = .7 )  + 
  geom_hline(yintercept = 0, linetype = 2) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  #facet_wrap("ej_comment", ncol = 1) +
  labs(y = 'Probability of Change in How a Rule\nAddresses "Environmental Justice"', 
       x = "Number of Comments",
       color =  '"Environmental Justice"\nRaised by Comments',
       shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted Change in Final Rules")  +
  theme(panel.border  = element_blank(),
        panel.grid.major.y = element_blank()) +
  ylim(0,1) 


By Agency

#ejejPR-winrate-agency

winrate <- ejFRejPR %>% 
  count(ej_comment, change, agency) %>% 
  group_by(ej_comment) %>% #FIXME make nice table with percents
  spread(change, n) %>% 
    mutate(`FALSE` = replace_na(`FALSE`, 0)) %>%
  mutate(`TRUE` = replace_na(`TRUE`, 0)) %>%
  mutate(percent = round(`TRUE`/(`TRUE`+`FALSE`)*100 ))

winrate %>% kablebox()
ej_comment agency FALSE TRUE percent
FALSE BIA 1 0 0
FALSE BLM 1 0 0
FALSE BOEM 0 1 100
FALSE COE 3 1 25
FALSE DOD 1 0 0
FALSE EERE 0 2 100
FALSE EPA 410 940 70
FALSE FEMA 7 1 12
FALSE FHWA 5 4 44
FALSE FMCSA 0 9 100
FALSE FRA 1 2 67
FALSE FSA 0 2 100
FALSE FTA 4 3 43
FALSE FWS 2 1 33
FALSE NHTSA 1 0 0
FALSE NOAA 1 2 67
FALSE NRC 11 7 39
FALSE RBS 0 1 100
FALSE USDA 0 1 100
TRUE BLM 0 2 100
TRUE BSEE 0 1 100
TRUE CEQ 0 1 100
TRUE COE 1 0 0
TRUE EPA 80 359 82
TRUE FEMA 1 0 0
TRUE FHWA 0 5 100
TRUE FMCSA 0 1 100
TRUE FRA 0 1 100
TRUE FTA 0 2 100
TRUE FWS 0 1 100
TRUE HUD 0 1 100
TRUE NHTSA 0 2 100
TRUE NRC 0 2 100
# winrate 
ejFRejPR %>% count(agency, ej_comment, change)  %>% 
  add_count(agency) %>% 
  filter(nn > 2) %>% 
  #filter(agency == "EPA") %>%
  left_join(winrate) %>%
  group_by(change) %>% 
  mutate(EJ_comment = ifelse(ej_comment, "EJ Comments", "No EJ Comments") ) %>% 
  ggplot() + 
  aes(x = n, y = EJ_comment, 
      fill = change, 
      label = ifelse(change== ej_comment, percent, NA) %>% str_c("%") ) +
  geom_col(alpha = .7) + 
  geom_text(aes(x = `TRUE`), hjust = 0) + 
  facet_wrap("agency", scales = "free", ncol = 2)+ 
  labs(fill = "EJ section changed\nin Final Rule",
       x = "Proposed Rules that Did Address EJ", 
       y = "") + 
  theme(axis.ticks.y = element_blank(),
        axis.text.x = element_text(angle = 30),
        panel.grid.major.y = element_blank())

Models

# interaction + agency dummies
mejPR_agency <- glm(change ~ ej_comment*log(comments + 1) + 
                      ej_comments_unique + #TODO this is colinear with above two, estimate nPR models
                      president +
                      agency,
                    data = ejFRejPR, 
                    family=binomial(link="logit"))

tidy(mejPR_agency) %>% kablebox()
term estimate std.error statistic p.value
(Intercept) -12.869 1455.398 -0.009 0.993
ej_commentTRUE 0.748 0.246 3.034 0.002
log(comments + 1) -0.156 0.033 -4.717 0.000
ej_comments_unique 0.036 0.014 2.518 0.012
presidentG. W. Bush -2.001 0.807 -2.479 0.013
presidentObama -2.187 0.799 -2.737 0.006
presidentTrump -2.398 0.804 -2.980 0.003
agencyBLM 15.623 1455.398 0.011 0.991
agencyBOEM 30.623 2058.243 0.015 0.988
agencyBSEE 30.894 2058.243 0.015 0.988
agencyCEQ -297.975 2062.376 -0.144 0.885
agencyCOE 13.881 1455.398 0.010 0.992
agencyDOD -0.191 2058.243 0.000 1.000
agencyEERE 31.141 1782.491 0.017 0.986
agencyEPA 16.137 1455.398 0.011 0.991
agencyFEMA 13.250 1455.398 0.009 0.993
agencyFHWA 16.002 1455.398 0.011 0.991
agencyFMCSA 31.320 1523.303 0.021 0.984
agencyFRA 16.677 1455.398 0.011 0.991
agencyFSA 31.105 1781.637 0.017 0.986
agencyFTA 15.704 1455.398 0.011 0.991
agencyFWS 15.215 1455.398 0.010 0.992
agencyHUD 30.267 2058.243 0.015 0.988
agencyNHTSA 15.416 1455.398 0.011 0.992
agencyNOAA 16.492 1455.398 0.011 0.991
agencyNRC 14.034 1455.398 0.010 0.992
agencyRBS 31.324 2058.243 0.015 0.988
agencyUSDA 31.384 2058.243 0.015 0.988
ej_commentTRUE:log(comments + 1) 0.069 0.051 1.336 0.182
# with N ej comments + agency dummies
mejnPR_agency <- glm(change ~ log(comments + 1) + 
                      ej_comments_unique +
                      president,
                    data = ejFRejPR, 
                    family=binomial(link="logit"))

tidy(mejnPR_agency) %>% kablebox()
term estimate std.error statistic p.value
(Intercept) 2.023 0.618 3.272 0.001
log(comments + 1) -0.056 0.022 -2.597 0.009
ej_comments_unique 0.061 0.016 3.733 0.000
presidentG. W. Bush -0.871 0.637 -1.368 0.171
presidentObama -1.006 0.621 -1.620 0.105
presidentTrump -1.188 0.625 -1.901 0.057

Predicted Probabilities by Agency

# ej-mejPR-agency

mejPR_agency <- glm(change ~ ej_comment*log(comments + 1) + 
                      ej_comments_unique +
                      president +
                      agency,
                    data = ejFRejPR, 
                    family=binomial(link="logit"))

tidy(mejPR_agency) %>% kablebox()
term estimate std.error statistic p.value
(Intercept) -12.869 1455.398 -0.009 0.993
ej_commentTRUE 0.748 0.246 3.034 0.002
log(comments + 1) -0.156 0.033 -4.717 0.000
ej_comments_unique 0.036 0.014 2.518 0.012
presidentG. W. Bush -2.001 0.807 -2.479 0.013
presidentObama -2.187 0.799 -2.737 0.006
presidentTrump -2.398 0.804 -2.980 0.003
agencyBLM 15.623 1455.398 0.011 0.991
agencyBOEM 30.623 2058.243 0.015 0.988
agencyBSEE 30.894 2058.243 0.015 0.988
agencyCEQ -297.975 2062.376 -0.144 0.885
agencyCOE 13.881 1455.398 0.010 0.992
agencyDOD -0.191 2058.243 0.000 1.000
agencyEERE 31.141 1782.491 0.017 0.986
agencyEPA 16.137 1455.398 0.011 0.991
agencyFEMA 13.250 1455.398 0.009 0.993
agencyFHWA 16.002 1455.398 0.011 0.991
agencyFMCSA 31.320 1523.303 0.021 0.984
agencyFRA 16.677 1455.398 0.011 0.991
agencyFSA 31.105 1781.637 0.017 0.986
agencyFTA 15.704 1455.398 0.011 0.991
agencyFWS 15.215 1455.398 0.010 0.992
agencyHUD 30.267 2058.243 0.015 0.988
agencyNHTSA 15.416 1455.398 0.011 0.992
agencyNOAA 16.492 1455.398 0.011 0.991
agencyNRC 14.034 1455.398 0.010 0.992
agencyRBS 31.324 2058.243 0.015 0.988
agencyUSDA 31.384 2058.243 0.015 0.988
ej_commentTRUE:log(comments + 1) 0.069 0.051 1.336 0.182
# A data frame of values at which to estimate probabilities:
values <- ejFRejPR %>%
  expand(ej_comment,
         ej_comments_unique = median(comments) %>% round(),
         comments = median(comments) %>% round(),
         president = "Obama",
         agency)

predicted <- augment(mejPR_agency,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     ) 

# calculate difference in probabilities
predicted %<>% 
  group_by(agency) %>% 
  mutate(diff = abs(sum(.fitted) - .fitted - .fitted)*100) %>% 
  mutate(diff = round(diff, 0) %>% str_pad(2, side = "left", pad = "0")) %>% 
  left_join(ejFRejPR %>% count(agency, name = "n_agency")) %>% 
  left_join( ejFRejPR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(Agency = str_c(diff, "% increase at ", agency, ", N = ", n_agency),
         EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))



# As a plot
predicted %>% 
  arrange(.fitted) %>%
  ggplot() + 
  aes(x = Agency, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                      ymax = .fitted + 1.96*.se.fit),
                  alpha = .7)  + 
  geom_hline(yintercept = 0, linetype = 2) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  #facet_wrap("agency", ncol = 1, scales = "free") +
  labs(y = 'Probability of Change in How a Rule Addresses "Environmental Justice"', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted change in Final Rules")  + 
  scale_y_continuous(breaks = c(0, .5,1)) +
  theme(panel.grid.major.y = element_blank(),
        panel.border = element_blank()) 

Agencies that have at least 300 comments on proposed rules that did not mention environmental justice (i.e., agencies where at least some of the rules in this dataset saw comments) and at least 3 rules where comments raised EJ concerns (i.e., agencies where EJ is somewhat salient).

#ej-mejPR-agency-top

ejFRejPR %>% 
  group_by(agency) %>% 
  count(agency, agency_ej_comments,sum(comments) )  %>%   
  kablebox()
agency agency_ej_comments sum(comments) n
BIA 0 25 1
BLM 65 6247 3
BOEM 3 0 1
BSEE 6 113864 1
CEQ 18398 1145571 1
COE 16 639 5
DOD 0 1 1
EERE 8 180 2
EPA 9660 31932048 1789
FEMA 0 218 9
FHWA 448 20528 14
FMCSA 12 30276 10
FRA 22 511 4
FSA 0 20 2
FTA 61 729 9
FWS 255 235 4
HUD 674 1025 1
NHTSA 164 6255 3
NOAA 79 4670 3
NRC 114 866 20
RBS 0 88 1
USDA 0 33 1
top <- ejFRejPR %>% 
  group_by(agency) %>% 
  filter(sum(comments) >=300,
         agency_ej_comments >=3) %>% 
    ungroup() %>% 
    .$agency %>% 
    unique()


# As a plot
predicted %>% 
  arrange(.fitted) %>%
  filter(agency %in% top) %>% 
  ggplot() + 
  aes(x = Agency, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                      ymax = .fitted + 1.96*.se.fit),
                  alpha = .7)  + 
  geom_hline(yintercept = 0, linetype = 2) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  labs(y = 'Probability of Change in How a Rule Addresses "Environmental Justice"', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted change in Final Rules") + 
  scale_y_continuous(breaks = c(0,.5,1)) +
  theme(panel.border = element_blank(),
        panel.grid.major.y = element_blank())

A more selective subset: Agencies that have at least 500 comments on proposed rules that did not mention environmental justice (i.e., agencies where at least some of the rules in this dataset saw more than a few comments) and at least 50 rules where comments raised EJ concerns (i.e., agencies where EJ is somewhat salient).

#ej-mejPR-agency-toptop

# slightly more selective, requiring 100 comments
top <- ejFRejPR %>% 
  group_by(agency) %>% 
  filter(sum(comments) >=500,
         agency_ej_comments >=50) %>% 
    ungroup() %>% 
    .$agency %>% 
    unique()


# As a plot
predicted %>% 
  arrange(.fitted) %>%
  filter(agency %in% top) %>% 
  ggplot() + 
  aes(x = Agency, y = .fitted, shape = EJ_comment,color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                      ymax = .fitted + 1.96*.se.fit),
                  alpha = .6)  + 
  geom_hline(yintercept = 0, linetype = 2) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  labs(y = 'Probability of Change in How a Rule Addresses "Environmental Justice"', 
       x = "",
       color =  '"Environmental Justice"\nRaised by Comments', shape =  '"Environmental Justice"\nRaised by Comments',
       title = "Predicted change in Final Rules") + 
  scale_y_continuous(breaks = c(0,.5,1)) +
  theme(panel.border = element_blank(),
        panel.grid.major.y = element_blank())

Comments with Agency Fixed Effects

#ej-mejPR-comments-agencyFE

# A data frame of values at which to estimate probabilities:
values <- ejFRejPR %>% 
  expand(comments =  c(1, 10,100,1000,10000),
         ej_comment,
         ej_comments_unique = median(ej_comments_unique) %>% round(),
         president = "Obama",
         agency = "EPA")

predicted <- augment(mejPR_agency,  
                     type.predict = "response",
                     newdata = values,
                     se_fit = TRUE
                     )  %>% 
  left_join(ejFRejPR %>% count(ej_comment, name = "n_ej_comment") ) %>% 
  mutate(EJ_comment = str_c(ej_comment, ", N = ", n_ej_comment))


# As a plot
predicted %>%
  filter(comments<10001) %>% 
  ggplot() + 
  aes(x = factor(comments), 
      y = .fitted, 
      shape = EJ_comment,
      color = EJ_comment) + 
  geom_pointrange(aes(ymin = .fitted - 1.96*.se.fit,
                  ymax = .fitted + 1.96*.se.fit), alpha = .7 )  + 
  geom_hline(yintercept = 0, linetype = 2) +
    scale_color_viridis_d(direction = -1, begin = 0, end = .6, option = "plasma") +
coord_flip() +
  #facet_wrap("ej_comment", ncol = 1) +
  labs(y = 'Probability of Change in How a Rule\nAddresses "Environmental Justice"', 
       x = "Number of Comments",
       color = '"Environmental Justice"\nRaised by Comments',
       shape = '"Environmental Justice"\nRaised by Comments',
       title = "Predicted Change in Final Rules")  +
  theme(panel.border  = element_blank(),
        panel.grid.major.y = element_blank()) +
  ylim(0,1) 


Example dockets

Rules where the proposed rule did address EJ, the final addressed EJ, and Comments addressed EJ:

top_dockets <- ejFRejPR %>%
  filter(agency %in% c(top, "HUD", "FRA", "DHS", "DOJ", "ED", "DOS", "BIA", "USCBP", "OSHA", "RUS" ),
         ej_fr, # ej in final
         ej_comment) %>% # with ej comments  
  select(docket_id, docket_title) %>% distinct() %>% pull(docket_id)

rules %>% filter(docket_id %in% top_dockets) %>% select(docket_id, docket_title, document_type, comments, ej_comments_unique) %>% arrange(docket_id) %>% kablebox()
docket_id docket_title document_type comments ej_comments_unique
BLM-2016-0002 Resource Management Planning Proposed Rule 3123 6
BLM-2016-0002 Resource Management Planning Rule 3123 6
BLM-2016-0002 Resource Management Planning Rule 3123 6
CEQ-2019-0003 Update to the Regulations Implementing the Procedural Provisions of the National Environmental Policy Act Proposed Rule 1145571 9179
CEQ-2019-0003 Update to the Regulations Implementing the Procedural Provisions of the National Environmental Policy Act Rule 1145571 9179
EPA-HQ-OA-2004-0002 Nondiscrimination on the Basis of Age in Programs or Activities Receiving Federal Financial Assistance from the Environmental Protection Agency Proposed Rule 3 0
EPA-HQ-OA-2004-0002 Nondiscrimination on the Basis of Age in Programs or Activities Receiving Federal Financial Assistance from the Environmental Protection Agency Rule 3 0
EPA-HQ-OA-2020-0128 Procedures for Issuing Guidance Proposed Rule 65 2
EPA-HQ-OA-2020-0128 Procedures for Issuing Guidance Rule 65 2
EPA-HQ-OAR-2001-0017 Review of the National Ambient Air Quality Standards (NAAQS) for Particulate Matter (PM) Proposed Rule 135140 60
EPA-HQ-OAR-2001-0017 Review of the National Ambient Air Quality Standards (NAAQS) for Particulate Matter (PM) Rule 135140 60
EPA-HQ-OAR-2001-0017 Review of the National Ambient Air Quality Standards (NAAQS) for Particulate Matter (PM) Rule 135140 60
EPA-HQ-OAR-2002-0034 National Emission Standards for Hazardous Air Pollutants for Iron and Steel Foundries Proposed Rule 130 0
EPA-HQ-OAR-2002-0034 National Emission Standards for Hazardous Air Pollutants for Iron and Steel Foundries Rule 130 0
EPA-HQ-OAR-2002-0034 National Emission Standards for Hazardous Air Pollutants for Iron and Steel Foundries Rule 130 0
EPA-HQ-OAR-2002-0037 National Emission Standards for Hazardous Air Pollutants for Polyvinyl Chloride and Copolymers Production Proposed Rule 28487 216
EPA-HQ-OAR-2002-0037 National Emission Standards for Hazardous Air Pollutants for Polyvinyl Chloride and Copolymers Production Rule 28487 216
EPA-HQ-OAR-2002-0051 National Emission Standards for Hazardous Air Pollutants From the Portland Cement Manufacturing Industry Proposed Rule 33220 14
EPA-HQ-OAR-2002-0051 National Emission Standards for Hazardous Air Pollutants From the Portland Cement Manufacturing Industry Rule 33220 14
EPA-HQ-OAR-2002-0051 National Emission Standards for Hazardous Air Pollutants From the Portland Cement Manufacturing Industry Rule 33220 14
EPA-HQ-OAR-2002-0051 National Emission Standards for Hazardous Air Pollutants From the Portland Cement Manufacturing Industry Rule 33220 14
EPA-HQ-OAR-2002-0058 National Emission Standards for Hazardous Air Pollutants for Industrial / Commercial, and Institutional Boilers and Process Heaters Proposed Rule 51687 14
EPA-HQ-OAR-2002-0058 National Emission Standards for Hazardous Air Pollutants for Industrial / Commercial, and Institutional Boilers and Process Heaters Rule 51687 14
EPA-HQ-OAR-2002-0076 Regional Haze Regulations; Revisions to Provision Governing Alternative to Source-Specific Best Available Retrofit Technology (Bart) Determinations Proposed Rule 213 0
EPA-HQ-OAR-2002-0076 Regional Haze Regulations; Revisions to Provision Governing Alternative to Source-Specific Best Available Retrofit Technology (Bart) Determinations Rule 213 0
EPA-HQ-OAR-2002-0076 Regional Haze Regulations; Revisions to Provision Governing Alternative to Source-Specific Best Available Retrofit Technology (Bart) Determinations Rule 213 0
EPA-HQ-OAR-2002-0083 National Emission Standards for Hazardous Air Pollutants: Integrated Iron and Steel Manufacturing Proposed Rule 12 4
EPA-HQ-OAR-2002-0083 National Emmission Standards for Hazardous Air Pollutants: Integrated Iron and Steel Manufacturing Rule 12 4
EPA-HQ-OAR-2002-0083 National Emission Standards for Hazardous Air Pollutants: Integrated Iron and Steel Manufacturing Rule 12 4
EPA-HQ-OAR-2003-0049 Transportation Conformity Rule Amendments for the New 8-hour Ozone and PM2.5 National Ambient Air Quality Standards and Miscellaneous Revisions for Existing Areas Proposed Rule 0 4
EPA-HQ-OAR-2003-0049 Transportation Conformity Rule Amendments for the New 8-hour Ozone and PM2.5 National Ambient Air Quality Standards and Miscellaneous Revisions for Existing Areas Proposed Rule 0 4
EPA-HQ-OAR-2003-0049 Transportation Conformity Rule Amendments for the New 8-hour Ozone and PM2.5 National Ambient Air Quality Standards and Miscellaneous Revisions for Existing Areas Proposed Rule 0 4
EPA-HQ-OAR-2003-0049 Transportation Conformity Rule Amendments for the New 8-hour Ozone and PM2.5 National Ambient Air Quality Standards and Miscellaneous Revisions for Existing Areas Rule 0 4
EPA-HQ-OAR-2003-0049 Transportation Conformity Rule Amendments for the New 8-hour Ozone and PM2.5 National Ambient Air Quality Standards and Miscellaneous Revisions for Existing Areas Rule 0 4
EPA-HQ-OAR-2003-0049 Transportation Conformity Rule Amendments for the New 8-hour Ozone and PM2.5 National Ambient Air Quality Standards and Miscellaneous Revisions for Existing Areas Rule 0 4
EPA-HQ-OAR-2003-0053 Rule to Reduce Interstate Transport of Fine Particulate Matter and Ozone ;Clean Air Interstate Rule, (CAIR) Proposed Rule 32 2
EPA-HQ-OAR-2003-0053 Rule to Reduce Interstate Transport of Fine Particulate Matter and Ozone ;Clean Air Interstate Rule, (CAIR) Rule 32 2
EPA-HQ-OAR-2003-0053 Rule to Reduce Interstate Transport of Fine Particulate Matter and Ozone ;Clean Air Interstate Rule, (CAIR) Rule 32 2
EPA-HQ-OAR-2003-0053 Rule to Reduce Interstate Transport of Fine Particulate Matter and Ozone ;Clean Air Interstate Rule, (CAIR) Rule 32 2
EPA-HQ-OAR-2003-0062 Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards Proposed Rule 90 5
EPA-HQ-OAR-2003-0062 Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards Rule 90 5
EPA-HQ-OAR-2003-0062 Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards Rule 90 5
EPA-HQ-OAR-2003-0076 Review of New Sources and Modifications in Indian Country Proposed Rule 64 0
EPA-HQ-OAR-2003-0076 Review of New Sources and Modifications in Indian Country Rule 64 0
EPA-HQ-OAR-2003-0079 Final Rule To Implement the 8-Hour Ozone National Ambient Air Quality Standard Proposed Rule 15 12
EPA-HQ-OAR-2003-0079 Final Rule To Implement the 8-Hour Ozone National Ambient Air Quality Standard Rule 15 12
EPA-HQ-OAR-2003-0079 Final Rule To Implement the 8-Hour Ozone National Ambient Air Quality Standard Rule 15 12
EPA-HQ-OAR-2003-0079 Final Rule To Implement the 8-Hour Ozone National Ambient Air Quality Standard Rule 15 12
EPA-HQ-OAR-2003-0090 Deferral of Effective Date of Nonattainment Designation for 8-hour Ozone National Ambient Air Quality Standards for Denver Early Action Compact Proposed Rule 6 2
EPA-HQ-OAR-2003-0090 Deferral of Effective Date of Nonattainment Designation for 8-hour Ozone National Ambient Air Quality Standards for Denver Early Action Compact Rule 6 2
EPA-HQ-OAR-2003-0090 Deferral of Effective Date of Nonattainment Designation for 8-hour Ozone National Ambient Air Quality Standards for Denver Early Action Compact Rule 6 2
EPA-HQ-OAR-2003-0090 Deferral of Effective Date of Nonattainment Designation for 8-hour Ozone National Ambient Air Quality Standards for Denver Early Action Compact Rule 6 2
EPA-HQ-OAR-2003-0119 Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Commercial and Industrial Solid Waste Incineration Units Proposed Rule 42334 16
EPA-HQ-OAR-2003-0119 Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Commercial and Industrial Solid Waste Incineration Units Rule 42334 16
EPA-HQ-OAR-2003-0146 National Emission Standards for Hazardous Air Pollutants for Petroleum Refineries: Residual Risk Standards Proposed Rule 41 12
EPA-HQ-OAR-2003-0146 National Emission Standards for Hazardous Air Pollutants for Petroleum Refineries: Residual Risk Standards Rule 41 12
EPA-HQ-OAR-2003-0146 National Emission Standards for Hazardous Air Pollutants for Petroleum Refineries: Residual Risk Standards Rule 41 12
EPA-HQ-OAR-2003-0146 National Emission Standards for Hazardous Air Pollutants for Petroleum Refineries: Residual Risk Standards Rule 41 12
EPA-HQ-OAR-2003-0146 National Emission Standards for Hazardous Air Pollutants for Petroleum Refineries: Residual Risk Standards Rule 41 12
EPA-HQ-OAR-2003-0156 Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Other Solid Waste Incineration Units Proposed Rule 50 2
EPA-HQ-OAR-2003-0156 Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Other Solid Waste Incineration Units Rule 50 2
EPA-HQ-OAR-2003-0156 Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Other Solid Waste Incineration Units Rule 50 2
EPA-HQ-OAR-2003-0156 Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Other Solid Waste Incineration Units Rule 50 2
EPA-HQ-OAR-2003-0179 Proposed Revisions to Clarify the Scope of Sufficiency Monitoring Requirements for Federal and State Operating Permits Programs Proposed Rule 557 3
EPA-HQ-OAR-2003-0179 Proposed Revisions to Clarify the Scope of Sufficiency Monitoring Requirements for Federal and State Operating Permits Programs Rule 557 3
EPA-HQ-OAR-2003-0179 Proposed Revisions to Clarify the Scope of Sufficiency Monitoring Requirements for Federal and State Operating Permits Programs Rule 557 3
EPA-HQ-OAR-2003-0179 Proposed Revisions to Clarify the Scope of Sufficiency Monitoring Requirements for Federal and State Operating Permits Programs Rule 557 3
EPA-HQ-OAR-2003-0179 Proposed Revisions to Clarify the Scope of Sufficiency Monitoring Requirements for Federal and State Operating Permits Programs Rule 557 3
EPA-HQ-OAR-2003-0194 National Emission Standard for Hazardous Air Pollutants for Leather Finishing Operations Proposed Rule 16 3
EPA-HQ-OAR-2003-0194 National Emission Standard for Hazardous Air Pollutants for Leather Finishing Operations Rule 16 3
EPA-HQ-OAR-2003-0194 National Emission Standard for Hazardous Air Pollutants for Leather Finishing Operations Rule 16 3
EPA-HQ-OAR-2004-0013 Prevention of Significant Deterioration of Nitrogen Oxide Rule 0 2
EPA-HQ-OAR-2004-0018 Revisions to the Ambient Air Monitoring Regulations Proposed Rule 31757 24
EPA-HQ-OAR-2004-0018 Revisions to the Ambient Air Monitoring Regulations Rule 31757 24
EPA-HQ-OAR-2004-0018 Revisions to the Ambient Air Monitoring Regulations Rule 31757 24
EPA-HQ-OAR-2004-0076 Rulemaking on Section 126 Petition from North Carolina to Reduce Interstate Transport of Fine Particulate Matter and Ozone; Federal Implementation Plans to Reduce Interstate Transport of Fine Particulate Matter and Ozone; Revisions to the Clean Air Act Interstate Rule; Revisions to the Acid Rain Program Proposed Rule 7 0
EPA-HQ-OAR-2004-0076 Rulemaking on Section 126 Petition from North Carolina to Reduce Interstate Transport of Fine Particulate Matter and Ozone; Federal Implementation Plans to Reduce Interstate Transport of Fine Particulate Matter and Ozone; Revisions to the Clean Air Act Interstate Rule; Revisions to the Acid Rain Program Rule 7 0
EPA-HQ-OAR-2004-0083 National Emission Standards for Hazardous Air Pollutants (NESHAP) for Stainless and Nonstainless Steel Electric Arc Furnaces (EAF) Manufacturing Proposed Rule 26 2
EPA-HQ-OAR-2004-0083 National Emission Standards for Hazardous Air Pollutants (NESHAP) for Stainless and Nonstainless Steel Electric Arc Furnaces (EAF) Manufacturing Rule 26 2
EPA-HQ-OAR-2004-0083 National Emission Standards for Hazardous Air Pollutants (NESHAP) for Stainless and Nonstainless Steel Electric Arc Furnaces (EAF) Manufacturing Rule 26 2
EPA-HQ-OAR-2004-0083 National Emission Standards for Hazardous Air Pollutants (NESHAP) for Stainless and Nonstainless Steel Electric Arc Furnaces (EAF) Manufacturing Rule 26 2
EPA-HQ-OAR-2004-0305 NESHAP for Primary Lead Smelters Proposed Rule 23 6
EPA-HQ-OAR-2004-0305 NESHAP for Primary Lead Smelters Rule 23 6
EPA-HQ-OAR-2004-0309 National Emission Standards for Hazardous Air Pollutants for Wet-Formed Fiberglass Mat Production Proposed Rule 8 0
EPA-HQ-OAR-2004-0309 National Emission Standards for Hazardous Air Pollutants for Wet-Formed Fiberglass Mat Production Rule 8 0
EPA-HQ-OAR-2004-0394 Review of the National Ambient Air Quality Standards: Ozone Proposed Rule 0 0
EPA-HQ-OAR-2004-0394 Review of the National Ambient Air Quality Standards: Ozone Proposed Rule 0 0
EPA-HQ-OAR-2004-0394 Review of the National Ambient Air Quality Standards: Ozone Rule 0 0
EPA-HQ-OAR-2005-0031 Standards of Performance for Fossil-Fuel-Fired Steam Generators for Which Construction is Commenced After August 17, 1971; Standards of Performance for Electric Utility Steam Generating Units for Which Construction is Commenced After September 18, 1978; Standards of Performance for Industrial-Commercial-Institutional Steam Generating Units; Reconsideration and Amendments Proposed Rule 95 2
EPA-HQ-OAR-2005-0031 Standards of Performance for Fossil-Fuel-Fired Steam Generators for Which Construction is Commenced After August 17, 1971; Standards of Performance for Electric Utility Steam Generating Units for Which Construction is Commenced After September 18, 1978; Standards of Performance for Industrial-Commercial-Institutional Steam Generating Units; Reconsideration and Amendments Rule 95 2
EPA-HQ-OAR-2005-0031 Standards of Performance for Fossil-Fuel-Fired Steam Generators for Which Construction is Commenced After August 17, 1971; Standards of Performance for Electric Utility Steam Generating Units for Which Construction is Commenced After September 18, 1978; Standards of Performance for Industrial-Commercial-Institutional Steam Generating Units; Reconsideration and Amendments Rule 95 2
EPA-HQ-OAR-2005-0031 Standards of Performance for Fossil-Fuel-Fired Steam Generators for Which Construction is Commenced After August 17, 1971; Standards of Performance for Electric Utility Steam Generating Units for Which Construction is Commenced After September 18, 1978; Standards of Performance for Industrial-Commercial-Institutional Steam Generating Units; Reconsideration and Amendments Rule 95 2
EPA-HQ-OAR-2005-0031 Standards of Performance for Fossil-Fuel-Fired Steam Generators for Which Construction is Commenced After August 17, 1971; Standards of Performance for Electric Utility Steam Generating Units for Which Construction is Commenced After September 18, 1978; Standards of Performance for Industrial-Commercial-Institutional Steam Generating Units; Reconsideration and Amendments Rule 95 2
EPA-HQ-OAR-2005-0031 Standards of Performance for Fossil-Fuel-Fired Steam Generators for Which Construction is Commenced After August 17, 1971; Standards of Performance for Electric Utility Steam Generating Units for Which Construction is Commenced After September 18, 1978; Standards of Performance for Industrial-Commercial-Institutional Steam Generating Units; Reconsideration and Amendments Rule 95 2
EPA-HQ-OAR-2005-0163 Prevention of Significant Deterioration (PSD) and Nonattainment New Source Review (NSR), and New Source Performance Standards (NSPS): Emissions Test for Electric Generating Units Proposed Rule 28629 2
EPA-HQ-OAR-2005-0163 Prevention of Significant Deterioration (PSD) and Nonattainment New Source Review (NSR), and New Source Performance Standards (NSPS): Emissions Test for Electric Generating Units Rule 28629 2
EPA-HQ-OAR-2005-0163 Prevention of Significant Deterioration (PSD) and Nonattainment New Source Review (NSR), and New Source Performance Standards (NSPS): Emissions Test for Electric Generating Units Rule 28629 2
EPA-HQ-OAR-2005-0172 Review of the National Ambient Air Quality Standards for Ozone Proposed Rule 103897 14
EPA-HQ-OAR-2005-0172 Review of the National Ambient Air Quality Standards for Ozone Rule 103897 14
EPA-HQ-OAR-2005-0475 Hazardous Organic NESHAP (HON) Residual Risk and Review of Technology Standard Rulemaking Proposed Rule 40 0
# final rule text where the pr did not address ej
ejFR %>%
  filter(agency_id %in% c(top, "HUD", "FRA", "DHS", "DOJ", "ED", "DOS", "BIA", "USCBP", "OSHA", "RUS" )) %>%
  filter(docket_id %in% ejFRejPR$docket_id, # ej_added
         docket_id %in% ejcomments$docket_id) %>%  # ejcomments
  distinct(docket_id, title, summary) %>% kablebox()
title docket_id summary
National Primary Drinking Water Regulations: Consumer Confidence Reports; Final Rule. EPA-HQ-OW-2002-0043 Environmental Justice Pursuant to Executive Order 12898 59FR 7629, February 16, 1994 .The Agency has considered environmental justice related issues with regard to the potential impacts of this action
Regional Haze Regulations and Guidelines for Best Available Retrofit Technology (BART) Determinations EPA-HQ-OAR-2002-0076 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and other statutory and executive order requirements. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice
Nonattainment Major New Source Review Implementation Under 8-Hour Ozone National Ambient Air Quality Standard: Reconsideration EPA-HQ-OAR-2003-0079 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high The EPA concluded that the Phase I Rule should not raise any environmental justice issues; for the same reasons, the issues raised in this reconsideration notice should not raise any environmental justice
Rule to Reduce Interstate Transport of Fine Particulate Matter and Ozone (Clean Air Interstate Rule); Revisions to Acid Rain Program; Revisions to the NOx SIP Call EPA-HQ-OAR-2003-0053 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act PRA Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice
Prevention of Significant Deterioration of Nitrogen Oxide EPA-HQ-OAR-2004-0013 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that this final rule should not raise any environmental justice issues. K.
Approval and Promulgation of Implementation Plans; Designation of Areas for Air Quality Planning Purposes; State of California; PM-10; Determination of Attainment for the San Joaquin Valley Nonattainment Area; Determination Regarding Applicability of Certain Clean Air Act Requirements EPA-R09-OAR-2006-0583 Environmental Justice B. The Clean Data Policy C. New Particulate Matter PM NAAQS D. Environmental Justice Comment 1 EPA received comments arguing that its process for making this determination did not adequately consider EPA s environmental justice mission to achieve equal Response EPA is committed to environmental justice, and a November 2005 memorandum by Administrator The gist of the environmental justice argument is that EPA has not adequately investigated and analyzed </td> </tr> <tr> <td style="text-align:left;"> Identification of Ozone Areas for Which the 1-Hour Standard Has Been Revoked and Technical Correction to Phase 1 Rule </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0079 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying, and addressing, as appropriate, disproportionate high This rule does not raise any environmental justice issues. </td> </tr> <tr> <td style="text-align:left;"> Tocixs Release Inventory Reporting Forms Modification Rule </td> <td style="text-align:left;"> EPA-HQ-TRI-2004-0001 </td> <td style="text-align:left;"> Environmental Justice Under Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations , EPA has undertaken to incorporate environmental justice into its policies and programs. EPA is committed to addressing environmental justice concerns, and is assuming a leadership role in environmental justice initiatives to enhance environmental quality for all residents of the United </td> </tr> <tr> <td style="text-align:left;"> Standards and Practices for All Appropriate Inquiries </td> <td style="text-align:left;"> EPA-HQ-SFUND-2004-0001 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and EPA is committed to addressing environmental justice concerns and has assumed a leadership role in environmental justice initiatives to enhance environmental quality for all citizens of the United Justice Task Force to analyze the array of environmental justice issues specific to waste programs </td> </tr> <tr> <td style="text-align:left;"> Phase 2 Rule to Implement the 8-Hour Ozone NAAQS </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0079 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Addre ss Environmental Justice in Minority Populations and The EPA believes that this rule does not raise any environmental justice concerns. justice goal. Public comme nts were submitted that raised environmental justice concern s with this concept. </td> </tr> <tr> <td style="text-align:left;"> Regional Haze Regulations and Guidelines for Best Available Retrofit Technology (BART) Determinations; Final Rule (70 FR 39104 - July 6, 2005) </td> <td style="text-align:left;"> EPA-HQ-OAR-2005-0163 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and other statutory and executive order requirements. Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice </td> </tr> <tr> <td style="text-align:left;"> Regional Haze Regulations; Final Rule (64 FR 35714 - July 1, 1999) </td> <td style="text-align:left;"> EPA-HQ-OAR-2005-0163 </td> <td style="text-align:left;"> Environmental Justice Executive Order 12898 F. Congressional Review Act G. Environmental Justice Executive Order 12898 Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate </td> </tr> <tr> <td style="text-align:left;"> Implementation of the 8-Hour Ozone National Ambient Air Quality Standards - Phase 1: Reconsideration </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0079 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA concluded that the Phase 1 Rule should not raise any environmental justice issues; for the same reasons, this final rule should not raise any environmental justice issues. </td> </tr> <tr> <td style="text-align:left;"> Extension of the Deferred Effective Date for the 8-Hour Ozone National Ambient Air Quality Standards for Early Action Compact Areas </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0090 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA believes that this final rule should not raise any environmental justice issues. </td> </tr> <tr> <td style="text-align:left;"> Clarification to Interim Standards and Practices for All Appropriate Inquiry Under CERCLA </td> <td style="text-align:left;"> EPA-HQ-SFUND-2004-0001 </td> <td style="text-align:left;"> Today s action does not involve special consideration of environmental justice related issues as required </td> </tr> <tr> <td style="text-align:left;"> Approval and Promulgation of Implementation Plans; Designation of Areas for Air Quality Planning Purposes; State of California; PM-10; Affirmation of Determination of Attainment for the San Joaquin Valley Nonattainment Area </td> <td style="text-align:left;"> EPA-R09-OAR-2006-0583 </td> <td style="text-align:left;"> Executive Order 12898 establishes a Federal policy for incorporating environmental justice into Federal </td> </tr> <tr> <td style="text-align:left;"> Approval and Promulgation of Air Quality Implementation Plans; Massachusetts; Amendment to Massachusetts State Implementation Plan for Transit System Improvements </td> <td style="text-align:left;"> EPA-R01-OAR-2006-1018 </td> <td style="text-align:left;"> justice area. justice issues here primarily with the state. The Federal executive policy on environmental justice is established by Executive Order 12898. justice considerations, EPA continues to encourage EOT to consider environmental justice concerns EPA also urges EOT and DEP to consider environmental justice concerns when deciding whether to meet </td> </tr> <tr> <td style="text-align:left;"> Approval and Promulgation of Implementation Plans: San Joaquin Valley Air Basin, CA </td> <td style="text-align:left;"> EPA-R09-OAR-2008-0306 </td> <td style="text-align:left;"> justice issues for the East Kern area. justice. EPA is committed to meeting the goals of environmental justice and is equally concerned for the populations Thus EPA recognizes the role of environmental justice and is observing its principles. Executive Order 12898 establishes a Federal policy for incorporating environmental justice into Federal </td> </tr> <tr> <td style="text-align:left;"> TX031.369 Approval and Promulgation of Implementation Plans: Texas; Revisions to the New Source Review State Implementation Plan; Modification of Existing Qualified Facilities Program and General Definitions </td> <td style="text-align:left;"> EPA-R06-OAR-2005-TX-0025 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high EPA lacks the discretionary authority to address environmental justice in this action. </td> </tr> <tr> <td style="text-align:left;"> Significant New Use Rules on Certain Chemical Substances </td> <td style="text-align:left;"> EPA-HQ-OPPT-2008-0918 </td> <td style="text-align:left;"> Executive Order 12898 This action does not entail special considerations of environmental justice related issues as delineated by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . </td> </tr> <tr> <td style="text-align:left;"> Light-Duty Vehicle Greenhouse Gas Emission Standards and Corporate Average Fuel Economy Standards; Final Rule </td> <td style="text-align:left;"> EPA-HQ-OAR-2009-0472 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Environmental Justice 6. Thus, the potential impacts of climate change raise environmental justice issues. 2009 Health, traffic, and environmental justice collaborative research and community action in Schweitzer, Environmental Justice and Transportation Investment Policy. </td> </tr> <tr> <td style="text-align:left;"> TX038.382 Approval and Promulgation of Implementation Plans: Texas; Revisions to the New Source Review State Implementation Plan; Flexible Permits. 25 pages n7f </td> <td style="text-align:left;"> EPA-R06-OAR-2005-TX-0032 </td> <td style="text-align:left;"> Justice, Sierra Club Lone Star Chapter, Community In Power and Development Association, KIDS for Clean Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high EPA lacks the discretionary authority to address environmental justice in this action. </td> </tr> <tr> <td style="text-align:left;"> TX045.372 Approvals and Promulgations of Air Quality Implementation Plans: Texas; Revisions to New Source Review (NSR) State Implementation Plan (SIP); Nonattainment NSR (NNSR) for the 1-Hour and the 1997 8-Hour Ozone Standard, NSR Reform, and a Standard Permit; Final Rule. 31 pages n9f </td> <td style="text-align:left;"> EPA-R06-OAR-2006-0133 </td> <td style="text-align:left;"> Justice, Sierra Club Lone Star Chapter, Community In Power and Development Association, KIDS for Clean Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high EPA lacks the discretionary authority to address environmental justice in this action. </td> </tr> <tr> <td style="text-align:left;"> TX031.373 Approvals and Promulgations of Air Quality Implementation Plans: Texas; Revisions to New Source Review (NSR) State Implementation Plan (SIP); Nonattainment NSR (NNSR) for the 1-Hour and the 1997 8-Hour Ozone Standard, NSR Reform, and a Standard Permit; Final Rule. 31 pages n9f </td> <td style="text-align:left;"> EPA-R06-OAR-2005-TX-0025 </td> <td style="text-align:left;"> Justice, Sierra Club Lone Star Chapter, Community In Power and Development Association, KIDS for Clean Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high EPA lacks the discretionary authority to address environmental justice in this action. </td> </tr> <tr> <td style="text-align:left;"> Direct Final Rule Staying Numeric Limitation for the Construction and Development Point Source Category </td> <td style="text-align:left;"> EPA-HQ-OW-2010-0884 </td> <td style="text-align:left;"> This rule also does not involve special consideration of environmental justice related issues as required </td> </tr> <tr> <td style="text-align:left;"> Action to Ensure Authority to Issue Permits Under the Prevention of Significant Deterioration Program to Sources of Greenhouse Gas Emissions:Finding of Failure To Submit State Implementation Plan Revisions Required for Greenhouse Gases </td> <td style="text-align:left;"> EPA-HQ-OAR-2010-0107 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Action to Ensure Authority to Issue Permits under Prevention of Significant Deterioration Program to Sources of Greenhouse Gas Emissions: Federal Implementation Plan for Jefferson County, KY </td> <td style="text-align:left;"> EPA-HQ-OAR-2010-0107 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Action to Ensure Authority to Issue Permits Under the Prevention of Significant Deterioration Program to Sources of Greenhouse Gas Emissions: Finding of Failure to Submit State Implementation Plan Revision Required of Louisville Metro Air Pollution Control District for Jefferson County, KY </td> <td style="text-align:left;"> EPA-HQ-OAR-2010-0107 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Updating Cross-References for the Oklahoma State Implementation Plan </td> <td style="text-align:left;"> EPA-HQ-OAR-2009-0517 </td> <td style="text-align:left;"> environmental justice related issues as required by Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . </td> </tr> <tr> <td style="text-align:left;"> Mandatory Reporting of Greenhouse Gases: Petroleum and Natural Gas Systems; Final Rule; Grant of Reconsideration </td> <td style="text-align:left;"> EPA-HQ-OAR-2009-0923 </td> <td style="text-align:left;"> specified by Executive Order 12875 58 FR 58093, October 28, 1993 , or involve special consideration of environmental justice related issues, as required by Executive Order 12898 59 FR 7629, February 16, 1994 . </td> </tr> <tr> <td style="text-align:left;"> Nondiscrimination on the Basis of Age in Programs or Activities Receiving Federal Assistance from the Environmental Protection Agency </td> <td style="text-align:left;"> EPA-HQ-OA-2004-0002 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Populations Executive Order 12898 59 FR 7629 Feb. 16, 1994 establishes Federal executive policy on environmental justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> National Ambient Air Quality Standards for Particulate Matter </td> <td style="text-align:left;"> EPA-HQ-OAR-2001-0017 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Many Tribes and some other commenters raised concerns about the environmental justice implications Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice particle and coarse particle standards would violate the principles of environmental justice. </td> </tr> <tr> <td style="text-align:left;"> Interpretation of the National Ambient Air Quality Standards for PM2.5--Correcting and Simplifying Amendment </td> <td style="text-align:left;"> EPA-HQ-OAR-2001-0017 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> National Emission Standards for Hazardous Air Pollutants for Iron and Steel Foundries </td> <td style="text-align:left;"> EPA-HQ-OAR-2002-0034 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> National Emission Standards for Hazardous Air Pollutants From the Portland Cement Manufacturing Industry and Standards of Performance for Portland Cement Plants; Final Rule </td> <td style="text-align:left;"> EPA-HQ-OAR-2002-0051 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations andReassessing Racial and Socio economic Disparities in Environmental Justice Research . Justice Analysis . \61 The results of the demographic analysis are presented in Review of Environmental Justice Justice to include meaningful involvement of all people regardless of race, color, national origin </td> </tr> <tr> <td style="text-align:left;"> National Emission Standards for Hazardous Air Pollutants From the Portland Cement Manufacturing Industry and Standards of Performance for Portland Cement Plants; Direct Final rule, amendments </td> <td style="text-align:left;"> EPA-HQ-OAR-2002-0051 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , because </td> </tr> <tr> <td style="text-align:left;"> National Emission Standards for Hazardous Air Pollutants for Major Sources: Industrial, Commercial, and Institutional Boilers and Process Heaters </td> <td style="text-align:left;"> EPA-HQ-OAR-2002-0058 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice EJ . The results of the demographic analysis are presented inReview of Environmental Justice Impacts EPA defines Environmental Justice to include meaningful involvement of all people regardless of </td> </tr> <tr> <td style="text-align:left;"> Regional Haze Regulations; Revisions to Provisions Governing Alternative to Source-Specific Best Available Retrofit Technology (BART) Determinations </td> <td style="text-align:left;"> EPA-HQ-OAR-2002-0076 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> PM2.5 and PM10 Hot-Spot Analyses in Project-Level Transportation Conformity Determinations for the New PM2.5 and Existing PM10 National Ambient Air Quality Standards </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0049 </td> <td style="text-align:left;"> transportation support systems, and airports are also often located in areas with sensitive populations and environmental justice concerns. </td> </tr> <tr> <td style="text-align:left;"> Inclusion of Delaware and New Jersey in the Clean Air Interstate Rule </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0053 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice, children s health, energy impacts, and requirements of the Paperwork Reduction Act. 2. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898,Federal Actions to Address Environmental Justice Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses.
Rule To Reduce Interstate Transport of Fine Particulate Matter and Ozone (Clean Air Interstate Rule): Reconsideration EPA-HQ-OAR-2003-0053 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice Guidance for Incorporating Environmental Justice Concerns in EPA s NEPA Compliance Analyses. </td> </tr> <tr> <td style="text-align:left;"> Clean Air Interstate Rule (CAIR) and CAIR Federal Implementation Plans; Corrections </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0053 </td> <td style="text-align:left;"> environmental justice related issues as required by Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 . </td> </tr> <tr> <td style="text-align:left;"> Implementation of the New Source Review (NSR) Program for Particulate Matter Less Than 2.5 Micrometers (PM2.5) </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0062 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice concerns due to the localized impacts of direct PM2.5 emissions. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Clean Air Fine Particle Implementation Rule - Federal Register Version </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0062 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Implementation of the New Source Review (NSR) Program for Particulate Matter Less Than 2.5 Micrometers (PM2.5); Final Rule To Repeal Grandfather Provision </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0062 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Phase 2 of the Final Rule To Implement the 8-Hour Ozone National Ambient Air Quality Standard--Notice of Reconsideration </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0079 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. The EPA concluded that the Phase 2 Rule does not raise any environmental justice issues See 70 FR at justice issues. </td> </tr> <tr> <td style="text-align:left;"> Final Extension of the Deferred Effective Date for 8-Hour Ozone National Ambient Air Quality Standards for Early Action Compact Areas </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0090 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionate high and The EPA believes that this final rule should not raise any environmental justice issues. </td> </tr> <tr> <td style="text-align:left;"> Extension of the Deferred Effective Date for 8-Hour Ozone National Ambient Air Quality Standards for the Denver Early Action Compact </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0090 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high </td> </tr> <tr> <td style="text-align:left;"> Extension of the Deferred Effective Date for 8-Hour Ozone National Ambient Air Quality Standards for the Denver Early Action Compact </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0090 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, Page 53955 as appropriate, disproportionately </td> </tr> <tr> <td style="text-align:left;"> Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Commercial and Industrial Solid Waste Incineration Units </td> <td style="text-align:left;"> EPA-HQ-OAR-2003-0119 </td> <td style="text-align:left;"> Fabric Filter dscf Dry Standard Cubic Foot dscm Dry Standard Cubic Meter EG Emission Guidelines EJ Environmental Justice EMPC Estimated Maximum Possible Concentration EOM Extractable Organic Matter ERT Electronic Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and EPA definesEnvironmental Justice to include meaningful involvement of all people regardless of
National Emission Standards for Hazardous Air Pollutants From Petroleum Refineries; Final rule; Correction EPA-HQ-OAR-2003-0146 environmental justice related issues as required by Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 .
National Emission Standards for Hazardous Air Pollutants From Petroleum Refineries; Final Rule EPA-HQ-OAR-2003-0146 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high Justice Executive Order.
Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Other Solid Waste Incineration Units EPA-HQ-OAR-2003-0156 The commenter also contended that this raises questions regarding environmental justice, as the exemption
Final Rule Interpreting the Scope of Certain Monitoring Requirements for State and Federal Operating Permits Programs EPA-HQ-OAR-2003-0179 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice EPA is committed to addressing environmental justice concerns and has assumed a leadership role in environmental justice initiatives to enhance environmental quality for all citizens of the United States
Ambient Air Monitoring Regulations: Correcting and Other Amendments EPA-HQ-OAR-2004-0018 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Revisions to Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 58 FR 7629, February 11, 1994 requires that each Federal agency make achieving environmental justice part of its mission by identifying and addressing, as appropriate, disproportionately high
Rulemaking on Section 126 Petition From North Carolina To Reduce Interstate Transport of Fine Particulate Matter and Ozone; Federal Implementation Plans To Reduce Interstate Transport of Fine Particulate Matter and Ozone; Revisions to the Clean Air Interstate Rule; Revisions to the Acid Rain Program EPA-HQ-OAR-2004-0076 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice Guidance for Incorporating Environmental Justice Concerns in EPAs NEPA Compliance Analyses.
Clean Air Interstate Rule (CAIR) and Federal Implementation Plans for CAIR; Corrections EPA-HQ-OAR-2004-0076 environmental justice related issues as required by Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 .
Amendments to National Emission Standards for Hazardous Air Pollutants for Area Sources: ElectricArc Furnace Steelmaking Facilities; Direct Final Rule EPA-HQ-OAR-2004-0083 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Emission Standards for Hazardous Air Pollutants for Area Sources: Electric Arc Furnace Steelmaking Facilities EPA-HQ-OAR-2004-0083 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Standards of Performance for Fossil-Fuel-Fired, Electric Utility, Industrial-Commercial-Institutional, and Small Industrial-Commercial-Institutional Steam Generating Units; Direct Final Rule EPA-HQ-OAR-2005-0031 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high EPA lacks the discretionary authority to address environmental justice in this final rulemaking.
Standards of Performance for Fossil-Fuel-Fired Steam Generators for Which Construction Is Commenced After August 17, 1971; Standards of Performance for Electric Utility Steam Generating Units for Which Construction Is Commenced After September 18, 1978; Standards of Performance for Industrial-Commercial-Institutional Steam Generating Units; and Standards of Performance for Small Industrial- EPA-HQ-OAR-2005-0031 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practical and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Ambient Air Quality Standards for Ozone EPA-HQ-OAR-2005-0172 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Emission Standards for Organic Hazardous Air Pollutants From the Synthetic Organic Chemical Manufacturing Industry EPA-HQ-OAR-2005-0475 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Low Income Populations Executive Order 12898, Federal Actions to Address Environmental Justice The Agency has recently reaffirmed its commitment to ensuring environmental justice for all people, To ensure environmental justice, we assert that we shall integrate environmental justice considerations
National Emission Standards for Hazardous Air Pollutants: Paint Stripping and Miscellaneous Surface Coating Operations at Area Sources EPA-HQ-OAR-2005-0526 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Revisions to the General Conformity Regulations; Final Rule EPA-HQ-OAR-2006-0669 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high The EPA encourages other agencies to carefully consider and address environmental justice in their
National Ambient Air Quality Standards for Lead EPA-HQ-OAR-2006-0735 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice concerns since many poor communities would not be monitored. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and justice. Some commenters expressed concerns that EPA had failed to adequately assess the environmental justice
Revisions to Lead Ambient Air Monitoring Requirements EPA-HQ-OAR-2006-0735 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Justice Alliance, The Point, Public Interest Law Center of Philadelphia s Public Health and Environmental Environmental Justice Analysis for Revisions to Lead Monitoring Requirements. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and In addition, EPA defines Environmental Justice to include meaningful involvement of all people </td> </tr> <tr> <td style="text-align:left;"> National Emission Standards for Hazardous Air Pollutants for Area Sources: Industrial, Commercial, and Institutional Boilers </td> <td style="text-align:left;"> EPA-HQ-OAR-2006-0790 </td> <td style="text-align:left;"> Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice EJ . EPA definesEnvironmental Justice to include meaningful involvement of all people regardless of
National Emission Standards for Hazardous Air Pollutants for Area Sources: Acrylic and Modacrylic Fibers Production, Carbon Black Production, Chemical Manufacturing: Chromium Compounds, Flexible Polyurethane Foam Production and Fabrication, Lead Acid Battery Manufacturing, and Wood Preserving EPA-HQ-OAR-2006-0897 Compliance with Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Compliance With Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice.
Amendments to National Emission Standards for Hazardous Air Pollutants for Area Sources: Acrylic and Modacrylic Fibers Production, Carbon Black Production, Chemical Manufacturing: Chromium Compounds, Flexible Polyurethane Foam Production and Fabrication, Lead Acid Battery Manufacturing, and Wood Preserving EPA-HQ-OAR-2006-0897 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Primary National Ambient Air Quality Standards for Nitrogen Dioxide; Final Rule EPA-HQ-OAR-2006-0922 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Control of Emissions from New Marine Compression-Ignition Engines at or Above 30 Liters per Cylinder EPA-HQ-OAR-2007-0121 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high justice executive order.
Primary National Ambient Air Quality Standard for Sulfur Dioxide EPA-HQ-OAR-2007-0352 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Justice, Center for Biological Diversity, CBD Environmental Defense Fund EDF , Natural Resources Public health e.g., ALA, ATS and environmental organizations e.g., CBD, WEACT for Environmental Justice Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice.
Protection of Stratospheric Ozone: The 2009 Critical Use Exemption From the Phaseout of Methyl Bromide EPA-HQ-OAR-2008-0009 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Standards of Performance for Coal Preparation and Processing Plants EPA-HQ-OAR-2008-0260 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Mandatory Reporting of Greenhouse Gases From Magnesium Production, Underground Coal Mines, Industrial Wastewater Treatment, and Industrial Waste Landfills; Final Rule EPA-HQ-OAR-2008-0508 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Mandatory Reporting of Greenhouse Gases EPA-HQ-OAR-2008-0508 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Mandatory Reporting of Greenhouse Gases EPA-HQ-OAR-2008-0508 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Populations EO 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Mandatory Reporting of Greenhouse Gases: Minor Harmonizing Changes to the General Provisions; Direct Final Rule EPA-HQ-OAR-2008-0508 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Transportation Conformity Rule PM2.5 and PM10 Amendments EPA-HQ-OAR-2008-0540 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes federal executive policy on environmental justice. provision directs federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Emission Standards for Hazardous Air Pollutants for Reciprocating Internal Combustion Engines EPA-HQ-OAR-2008-0708 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs Federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Emission Standards for Hazardous Air Pollutants for Reciprocating Internal Combustion Engines; Final rule; Correction EPA-HQ-OAR-2008-0708 environmental justice related issues as required by Executive Order 12898, Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 .
National Emission Standards for Hazardous Air Pollutants for Reciprocating Internal Combustion Engines; Direct final rule; amendments EPA-HQ-OAR-2008-0708 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 , because
National Emission Standards for Hazardous Air Pollutants: Reciprocating Internal Combustion Engines EPA-HQ-OAR-2008-0708 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Regulation of Fuels and Fuel Additivies: Federal Volatility Control Program in the Denver-Boulder-Greeley-Ft. Collins-Loveland, Colorado, 1997 8-Hour Ozone Nonattainment Area EPA-HQ-OAR-2008-0924 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629, Feb. 16, 1994 establishes federal executive policy on environmental justice. provision directs federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Endangerment and Cause or Contribute Findings for Greenhouse Gases Under Section 202(a) of the Clean Air Act EPA-HQ-OAR-2009-0171 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629, Feb. 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Prevention of Significant Deterioration and Title V Greenhouse Gas Tailoring Rule EPA-HQ-OAR-2009-0517 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Limitation of Approval of Prevention of Significant Deterioration Provisions Concerning Greenhouse Gas Emitting-Sources in State Implementation Plans; Final Rule EPA-HQ-OAR-2009-0517 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. provision directs federal agencies, to the greatest extent practicable and permitted by law, to make environmental justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Action to Ensure Authority to Implement Title V Permitting Programs under Greenhouse Gas Tailoring Rule EPA-HQ-OAR-2009-0517 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order EO 12898 59 FR 7629 Feb. 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Mandatory Reporting of Greenhouse Gases: Petroleum and Natural Gas Systems; Final Rule EPA-HQ-OAR-2009-0923 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Confidentiality Determinations for Data Required Under the Mandatory Greenhouse Gas Reporting Rule and Amendments to Special Rules Governing Certain Information Obtained Under the Clean Air Act EPA-HQ-OAR-2009-0924 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Mandatory Reporting of Greenhouse Gases: Additional Sources of Fluorinated GHGs; Final Rule EPA-HQ-OAR-2009-0927 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes Federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Action to Ensure Authority To Issue Permits Under the Prevention of Significant Deterioration Program to Sources of Greenhouse Gas Emissions: Finding of Substantial Inadequacy and SIP Call EPA-HQ-OAR-2010-0107 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Action to Ensure Authority to Issue Permits Under the Prevention of Significant Deterioration Program to Sources of Greenhouse Gas Emissions: Federal Implementation Plan EPA-HQ-OAR-2010-0107 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
Mandatory Reporting of Greenhouse Gases; Final Rule EPA-HQ-OAR-2010-0109 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 59 FR 7629, February 16, 1994 establishes federal executive policy on environmental justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high
National Emission Standards for Hazardous Air Pollutant Emissions: Group I Polymers and Resins; Marine Tank Vessel Loading Operations; Pharmaceuticals Production; and the Printing and Publishing Industry EPA-HQ-OAR-2010-0600 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and justice. justice part of their mission by identifying and addressing, as appropriate, disproportionately high To examine the potential for any environmental justice issues that might be associated with each source
Protections for Subjects in Human Research; Nursing Women EPA-HQ-OPP-2003-0132 Therefore, under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in
Protections for Subjects in Human Research EPA-HQ-OPP-2003-0132 Therefore, under Executive Order 12898, entitled Federal Actions to Address Environmental Justice in
Premanufacture Notification Exemption for Polymers; Amendment of Polymer Exemption Rule to Exclude Certain Perfluorinated Polymers EPA-HQ-OPPT-2002-0051 Executive Order 12898 This action does not entail special considerations of environmental justice related issues as delineated by Executive Order 12898, entitled Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 .

EPA-HQ-RCRA-2012-0121

In 2015, the Environmental Protection Agency (EPA) published a draft rule revising its hazardous waste generator regulatory program, in part “providing greater flexibility for hazardous waste generators to manage their hazardous waste in a cost-effective and protective manner” (EPA 2015). This draft rule did contain a section addressing Executive Order 12898:

EPA is allowing VSQGs [very small quantity generators] to ship their hazardous waste to an LQG [large quantity generators]…Although this change could result in an increase in traffic for certain communities, EPA believes the increase would not be significant given that VSQGs currently may send their hazardous waste to a number of destinations, including municipal and non-municipal solid waste management facilities.

EPA is finalizing alternative standards for VSQGs and SQGs that would allow these entities to maintain their generator category if they generate hazardous waste during an episodic event. Although these generators will be allowed to temporarily manage a greater amount of hazardous waste than their current generator category allows, EPA is finalizing conditions under which the hazardous waste generated from an episodic event must be managed in order to maintain the protection of human health and the environment. Therefore, EPA does not anticipate disproportionately high and adverse human health or environmental effects on minority, low-income or indigenous populations from these alternative standards.

EPA-HQ-RCRA-2012-0121 received 235 comments, but none raising EJ concerns, and this section was left unchanged in the final rule. (One commenter did attach an annotated copy of the final rule.)


Example comments

Excerpts from comments mentioning “environmental justice” on proposed rules that did not address environmental justice:

ejcomments %>% 
  filter(docket_id %in% ejFRejPR$docket_id) %>% 
  distinct(docket_id, title, summary) %>% kablebox()
title docket_id summary
Petition for Reconsideration of Reclassification of Major Sources as Area Sources Under Section 112 of the Clean Air Act, 85 Fed. Reg. 73,854 (November 19, 2020) EPA-HQ-OAR-2019-0282 s failure to address new research regarding disproportionate impacts of toxic super polluters on environmental justice communities communities which are also disproportionately at risk from COVID 19. Justice Advocacy Services Sierra Club Petition on January 18, 2021, which the undersigned State justice communities, see Multistate Comments on Proposed Rule at 6 8 Sept. 24, 2019 , and should Justice Analysis.
Comment submitted by J. Public EPA-HQ-OAR-2018-0415 What analysis of environmental justice did we conduct? G. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and What analysis of environmental justice did we conduct? To examine the potential for any environmental justice issues that might be associated with the Cellulose Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and
Petition for Reconsideration of the National Emission Standards for Hazardous Air Pollutants (NESHAP): Miscellaneous Organic Chemical Manufacturing (MON) Risk and Technology Review; Final Rule, 85 Fed. Reg. 49,084 (Aug. 12, 2020), Docket No. EPA-HQ-OAR-2018-0746 EPA-HQ-OAR-2018-0746 James, Louisiana Bucket Brigade, Louisiana Environmental Action Network, Texas Environmental Justice Alliance Houston, Ohio Valley Environmental Coalition, Blue Ridge Environmental Defense League, Inc., Environmental Justice Health Alliance for Chemical Policy Reform, Sierra Club, Environmental Integrity Project, and James, Louisiana Bucket Brigade, Louisiana Environmental Action Network, Texas Environmental Justice Alliance Houston, Ohio Valley Environmental Coalition, Blue Ridge Environmental Defense League, Inc., Environmental Justice Health Alliance for Chemical Policy Reform EJHA , Sierra Club, Environmental Integrity Project Box 66323 Baton Rouge, LA 70896 , Texas Environmental Justice Advocacy Services t.e.j.a.s. 900 North Box 88, Glendale Springs, NC 28629 , Environmental Justice Health Alliance for Chemical Policy Reform Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental justice policy21 and also violates Executive Order 12898, 59 Fed. James, Louisiana Bucket Brigade, Louisiana Environmental Action Network, Texas Environmental Justice We obtained 2016 summer average 8 h maximum ozone concentrations from EPA s Environmental Justice Screening 3628242 Collins T W, Grineski S E, Chakraborty J, Montgomery M C and Hernandez M 2015 Downscaling environmental justice analysis determinants of household level hazardous air pollutant exposure in Greater Houston
Comment on EPA-R08-OAR-2015-0463-0225 EPA-R08-OAR-2015-0463 Lastly, there is an environmental justice issue that I would like to see addressed, and that s for
Comment on EPA-R08-OAR-2015-0463-0225 EPA-R08-OAR-2015-0463 in our atmosphere for any more 9 contributors to our ozone. 10 Lastly, there is an environmental justice 11 issue that I would like to see addressed, and that s 12 for 120 years these communities
Comment submitted by Letitia James, Attorney General of New York et al.  EPA-HQ-OPPT-2013-0225 FARLEY Deputy Attorney General New Jersey Office of the Attorney General Division of Law Environmental Justice & Environmental Enforcement Section 25 Market, 7th Floor Trenton, NJ 08625
Anonymous public comment EPA-HQ-OPP-2017-0543 Additionally, this proposed rollback violates EPA s obligations to protect children and environmental justice communities.
Comment submitted by Reid Maki, Coordinator, Child Labor Coalition (CLC) EPA-HQ-OPP-2017-0543 Fourth, EPA impermissibly ignores the deleterious environmental justice impact of the Proposed Rule Yet, EPA makes no mention of these factors in the Proposed Rule and fails to provide an environmental justice analysis. EPA must consider the fact that farmworkers are an environmental justice group and provide an environmental justice analysis prior to finalizing any rule.
Comment submitted by Georges C. Benjamin, Executive Director, American Public Health Association (APHA) EPA-HQ-OPP-2017-0543 Fourth, EPA impermissibly ignores the deleterious environmental justice impact of the proposed rule Yet, EPA makes no mention of these factors in the proposed rule and fails to provide an environmental justice analysis. EPA must consider the fact that farmworkers are an environmental justice group and provide an environmental justice analysis prior to finalizing any rule.
Comment submitted by Carrie Apfel, Staff Attorney, Earthjustice EPA-HQ-OPP-2017-0543 Environmental Justice Strategic Plan for 2016 2020 partners on incorporating environmental justice into permitting justice in decision making will draw heavily from EPA s Environmental Justice Research Roadmap, the justice efforts and reflects long standing aspirations of environmental justice stakeholders. tions of environmental justice stakeholders. National Environmental Justice Advisory Committee, 2004. Guidance on Considering Environmental Justice During the Development of Regulatory Actions What Is Environmental Justice? What Is an Environmental Justice Concern ? EPA s historical EJ policies include EPA s Environmental Justice Strategy 1995 , Environmental Justice What Is Environmental Justice? What Is Environmental Justice? B. Technical Guidance for Assessing Environmental Justice in Regulatory Analysis Addressing environmental justice is no exception. The EPA s Environmental Justice Strategy. U.S. EPA, Office of Environmental Justice. U.S. EPA. 2007b. EPA, Office of Environmental Justice. EPA, Office of Environmental Justice.
Mass Comment Campaign sponsored by Pesticide Action Network North America (PAN). (USB) EPA-HQ-OPP-2017-0543 This proposed rollback violates EPA s obligations to protect children and environmental justice communities This proposed rollback violates EPA s obligations to protect children and environmental justice communities This proposed rollback violates EPA s obligations to protect children and environmental justice communities This proposed rollback violates EPA s obligations to protect children and environmental justice communities This proposed rollback violates EPA s obligations to protect children and environmental justice communities This proposed rollback violates EPA s obligations to protect children and environmental justice communities
Comment submitted by 21st Century Youth Leadership Movement, Alaska Community Action on Toxics, Alianza Nacional de Campesinas et al.  EPA-HQ-OPP-2017-0543 Fourth, EPA impermissibly ignores the deleterious environmental justice impact of the Proposed Rule insurance.22 Yet, EPA makes no mention of these factors in the Proposed Rule and fails to provide an environmental justice analysis. EPA must consider the fact that farmworkers are an environmental justice group and provide an environmental justice analysis prior to finalizing any rule.
Comment submitted by Kara Moberg, Co-Chair and Mariza Gamez-Garcia, Co-Chair, Policy, on behalf of Advocacy, and Civil Rights Subcommittee of the Michigan Interagency Migrant Services Committee (PACR) EPA-HQ-OPP-2017-0543 justice impact. The Proposed Rule Would Have a Significant Environmental Justice Impact on Farmworkers and Their Families justice analysis. EPA must consider the fact that farmworkers are an environmental justice group and provide an environmental justice analysis prior to finalizing any rule. Udow, Pesticide Action Campaign Coordinator, spoke on Environmental Justice and Michigan s Migrant
Comment submitted by Letitia James, Attorney General, State of New York et al.  EPA-HQ-OPP-2017-0543 EPA failed to comply with its obligations under Executive Order 12898 to address environmental justice The Proposed Rule does not meaningfully address its environmental justice impacts. By failing to take a hard look at environmental justice issues in its review, the agency s analysis Justice Section New Jersey Division of Law 25 Market Street P.O. EPA failed to comply with its obligations under Executive Order 12898 to address environmental justice
Comment submitted by C. Lish EPA-HQ-OPP-2017-0543 proposed rollback violates the Environmental Protection Agency s obligations to protect children and environmental justice communities.
Comment submitted by Thomas Cmar Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 77 to 83) EPA-HQ-OLEM-2019-0173 to Closure Column Addition by Earthjustice Jan. 2020 73 EPA, Technical Guidance for Assessing Environmental Justice in Regulatory Analysis June 2016 74 EPA, Plan EJ 2014 Sept. 2011 75 EPA, Guidance on Considering Environmental Justice During the Development of Regulatory Actions May 2015 76
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 66 to 76) EPA-HQ-OLEM-2019-0173 EPA, Guidance on Considering Environmental Justice Guidance on Considering Environmental Justice During the Development of Regulatory Actions, May 2015 What Is Environmental Justice? What Is an Environmental Justice Concern ? EPA s historical EJ policies include EPA s Environmental Justice Strategy 1995 , Environmental Justice What Is Environmental Justice? What Is Environmental Justice? B. The USEPA Environmental Justice Strategic Plan for 2016 2020 partners on incorporating environmental justice into permitting justice in decision making will draw heavily from EPA s Environmental Justice Research Roadmap, the justice efforts and reflects long standing aspirations of environmental justice stakeholders. tions of environmental justice stakeholders. National Environmental Justice Advisory Committee, 2004. EPA, Plan EJ 2014 Sept. 2011 USEPA, Office of Environmental Justice justice, is EPA s overarching strategy for advancing environmental justice. Complementary to the Environmental Justice in Rulemaking Guidance is the Environmental Justice Technical Justice in Permitting Environmental Justice Permitting Initiative is to ensure that environmental Justice EJC Environmental Justice Committee EJGAT Environmental Justice Geographic Assessment Justice into Rulemaking 3.2 Considering Environmental Justice in Permitting 3.3 Advancing Environmental
Comment submitted by Celeste Flores, Lake County Outreach Director, Faith in Place EPA-HQ-OLEM-2019-0173 In Environmental Justices communities like Waukegan, IL, they are cumulative with the crippling effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 Environmental Justice in Illinois . . . . . . . . . . . . . . . . . . . . . . . . . . .
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al.  EPA-HQ-OLEM-2019-0173 THE PROPOSED RULE VIOLATES EXECUTIVE ORDER 12898 ON ENVIRONMENTAL JUSTICE. ……………………. EPA s Lack of Compliance with Guidance Requiring Implementation of Environmental Justice Consideration THE PROPOSED RULE VIOLATES EXECUTIVE ORDER 12898 ON ENVIRONMENTAL JUSTICE. Executive Order 12898 requires that each Federal agency shall make achieving environmental justice THE PROPOSED RULE VIOLATES EXECUTIVE ORDER 12898 ON ENVIRONMENTAL JUSTICE. A.
Comment submitted by Lisa Evans, Earthjustice et al.  EPA-HQ-OLEM-2019-0173 Larry Baldwin White Oak New Riverkeeper Alliance Kathy Selvage Committee for Constitutional and Environmental Justice cc Barry Breen, OLEM
Comment submitted by Jonathan Levenshus, Beyond Coal Campaign, Sierra Club et al. – includes Mass Comment Campaign (web) EPA-HQ-OLEM-2019-0173 Salinas, Puerto Rico Kathy Selvage Committee for Constitutional and Environmental Justice Clintwood
Comment submitted by Tara A. Rocque, Assistant Director and Peter Goode, Clinic Environmental Engineer, Interdisciplinary Environmental Clinic, Washington University School of Law on behalf of Missouri Chapter of the Sierra Club and Labadie Environmental Organization (LEO) EPA-HQ-OLEM-2019-0173 residential areas are located 150 and 350 feet from the fly ash pond.32 The residential areas are environmental justice communities since census data indicate that greater than 50 of the population in this area Also, maps for Sikeston, Missouri from EJSCREEN, EPA s Environmental Justice Screening and Mapping Tool
Comment submitted by Thomas Cmar Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 35 to 38) EPA-HQ-OLEM-2019-0173 to Closure Column Addition by Earthjustice Jan. 2020 73 EPA, Technical Guidance for Assessing Environmental Justice in Regulatory Analysis June 2016 74 EPA, Plan EJ 2014 Sept. 2011 75 EPA, Guidance on Considering Environmental Justice During the Development of Regulatory Actions May 2015 76 Center, Physicians for Social Responsibility, Clean Air Task Force, Kentucky Resources Council, and Environmental Justice Resource Center on Proposed Rule Disposal of Coal Combustion Residuals from Electric Utilities
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 1 to 19) EPA-HQ-OLEM-2019-0173 Justice Heather Case, Acting Director, EPA Office of Environmental Justice OEJ Victoria Robinson an environmental justice community e.g., impoverished as a stigma. Environmental justice stakeholders should be viewed as full partners and Agency customers. Draft Memorandum on Incorporating Environmental Justice into EPA Permitting Authority. July 18. Environmental Justice in the Permitting Process. July. U.S. EPA and Environmental Justice VIII. Justice Standards IX. Environmental Justice The EPA website addressing Environmental Justice states emphasis added Environmental justice is the fair treatment and meaningful involvement of all people regardless of 6 The proposed online hearing does not meet the EPA Environmental Justice standard that all people Amendments HW Hazardous Waste NEJAC National Environmental Justice Advisory Council NOD Notice of It presents new information about technical assistance, environmental justice, social media and other to incorporate guidance on addressing environmental justice EJ concerns. Justice, Cultural, and Tribal Concerns EPA defines environmental justice as the fair treatment and Plan EJ 2014, Office of Environmental Justice, September 2011, p. 3. 4 Ibid.
Comment submitted by Lisa Evans Senior Counsel, Earthjustice on behalf of Alabama Rivers Alliance et al. - includes Mass Comment Campaign (web) EPA-HQ-OLEM-2019-0173 MountainTrue Rebecca Hammer on behalf of Natural Resources Defense Council Acacia Cadogan on behalf of NC Environmental Justice Network Richard Lawton on behalf of New Jersey Sustainable Business Council Alex Cunha on
Mass comment campaign sponsored by Sierra Club (web) EPA-HQ-OLEM-2019-0173 This is also an environmental justice issue. May the halls of environmental justice burn you all down on the day of reckoning. We need environmental justice in this country to protect the health and well being of ALL people.
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 52 to 65) EPA-HQ-OLEM-2019-0173 to Closure Column Addition by Earthjustice Jan. 2020 73 EPA, Technical Guidance for Assessing Environmental Justice in Regulatory Analysis June 2016 74 EPA, Plan EJ 2014 Sept. 2011 75 EPA, Guidance on Considering Environmental Justice During the Development of Regulatory Actions May 2015 76 Justice ELG Effluent Limitation Guidelines see SPGELG EO Executive Order EPA Environmental Protection Justice in Minority Populations and Low Income Populations 59 FR 7629, February 16, 1994 justice, children s health, small business impact, unfunded mandates, Federalism, tribal consultation Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and The following sections address potential environmental justice EJ issues resulting from CCR disposal
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 41 to 51) EPA-HQ-OLEM-2019-0173 to Closure Column Addition by Earthjustice Jan. 2020 73 EPA, Technical Guidance for Assessing Environmental Justice in Regulatory Analysis June 2016 74 EPA, Plan EJ 2014 Sept. 2011 75 EPA, Guidance on Considering Environmental Justice During the Development of Regulatory Actions May 2015 76 Low Income Populations Executive Order 12898 Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Low Income Populations 59 FR 7629, Feb. 16, 1994 directs federal
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 63 to 77) EPA-HQ-OLEM-2019-0172 Minefill sites are also poster children of environmental justice, as well. CCR fill sites are disproportionately located in environmental justice communities. Use of CCR as fill has already harmed environmental justice communities. Minefill sites are also poster children of environmental justice, as well. Justice in a Regulatory Action, 4 6 May 29, 2015 examples of environmental justice considerations Law Center, Physicians for Social Responsibility, Clean Air Task Force, Kentucky Resources Council, Environmental Justice Resource Center, Docket ID No. Commission on Civil Rights, 2016 Environmental Justice Examining the Environmental Protection Agency
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 15 to 27) EPA-HQ-OLEM-2019-0172 Law Center, Physicians for Social Responsibility, Clean Air Task Force, Kentucky Resources Council, Environmental Justice Resource Center, Docket ID No. Commission on Civil Rights, 2016 Environmental Justice Examining the Environmental Protection Agency justice analysis. For the environmental justice analysis, EPA determined fish consumption rates using the race population For the environmental justice analysis, EPA determined fish consumption rates using the race population This environmental justice EJ analysis included looking at impacts based on race or Hispanic origin plant discharges have on environmental justice EJ cohorts in addition to the national scale cohorts annual average daily dose of pollutants for human receptors based on race and Hispanic origin as an environmental justice analysis. Environmental Justice Analysis Receptor Cohort Specific Consumption Rate by Race or Hispanic Origin Environmental Justice Analysis Receptor Cohort Specific Input Consumption Rate by Race or Hispanic Origin
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 28 to 44) EPA-HQ-OLEM-2019-0172 Law Center, Physicians for Social Responsibility, Clean Air Task Force, Kentucky Resources Council, Environmental Justice Resource Center, Docket ID No. Commission on Civil Rights, 2016 Environmental Justice Examining the Environmental Protection Agency THE PROPOSED RULE VIOLATES EXECUTIVE ORDER 12898 ON ENVIRONMENTAL JUSTICE. …………………… Commenters own environmental justice analysis of the national rule also found disparate impact. THE PROPOSED RULE VIOLATES EXECUTIVE ORDER 12898 ON ENVIRONMENTAL JUSTICE. The environmental justice impact is especially magnified in EPA Region 4. Louisiana s three coal ash impoundments are all in environmental justice communities. The Communities at Risk A Case for Environmental Justice Low income communities shoulder a disproportionate
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al.  EPA-HQ-OLEM-2019-0172 THE PROPOSED RULE VIOLATES EXECUTIVE ORDER 12898 ON ENVIRONMENTAL JUSTICE. ……………………. Commenters own environmental justice analysis of the national rule also found disparate impact. THE PROPOSED RULE VIOLATES EXECUTIVE ORDER 12898 ON ENVIRONMENTAL JUSTICE. Specifically, the purpose of an environmental justice analysis is to determine whether a project Supp. 3d 101, 141 D.D.C. 2017 cursory environmental justice analysis insufficient to discharge environmental
Comment submitted by Michelle Roos, Executive Director, Environmental Protection Network (EPN) EPA-HQ-OLEM-2019-0172 As EPA s National Environmental Justice Advisory Council has advised social media and technology
Mass Comment Campaign sponsored by Sierra Club (web) EPA-HQ-OLEM-2019-0172 Tawnya Smith MA 2035 This is an environmental justice issue. Melody Larson ME 4260 This is an environmental justice issue as those who will be impacted the most Christine Shonnard MI 49916 Please fight for environmental justice and prioritize the right to access
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 45 to 62) EPA-HQ-OLEM-2019-0172 Minefill sites are also poster children of environmental justice, as well. CCR fill sites are disproportionately located in environmental justice communities. Use of CCR as fill has already harmed environmental justice communities. Minefill sites are also poster children of environmental justice, as well. Justice in a Regulatory Action, 4 6 May 29, 2015 examples of environmental justice considerations Law Center, Physicians for Social Responsibility, Clean Air Task Force, Kentucky Resources Council, Environmental Justice Resource Center, Docket ID No. Commission on Civil Rights, 2016 Environmental Justice Examining the Environmental Protection Agency Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and Findings of Environmental Justice Analysis for Electric Utility Plants For the first comparison, the Environmental Justice Analysis for Offsite Landfills, Siting of New Landfills, and Electricity Service If this were to occur, the environmental justice impacts could be similar to the demographic comparison
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments A to K) EPA-HQ-OLEM-2019-0172 Law Center, Physicians for Social Responsibility, Clean Air Task Force, Kentucky Resources Council, Environmental Justice Resource Center, Docket ID No. Commission on Civil Rights, 2016 Environmental Justice Examining the Environmental Protection Agency
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 93 to 107) EPA-HQ-OLEM-2019-0172 Justice Heather Case, Acting Director, EPA Office of Environmental Justice OEJ Victoria Robinson an environmental justice community e.g., impoverished as a stigma. Environmental justice stakeholders should be viewed as full partners and Agency customers. Draft Memorandum on Incorporating Environmental Justice into EPA Permitting Authority. July 18. Environmental Justice in the Permitting Process. July. U.S. National Environmental Justice Advisory Council Environmental Justice Examining the US EPA s Compliance and Enforcement of Title VI and Executive Order EPA s definition of environmental justice recognizes environmental justice as a civil right, fair treatment Justice ENVIRONMENTAL JUSTICE AS A CIVIL RIGHT EPA defines environmental justice as the fair treatment .77 The Office of Environmental Justice has an environmental justice coordinator and offices in each justice issues.79 The Office of Environmental Justice also runs the Environmental Justice Collaborative EPA s definition of environmental justice recognizes environmental justice as a civil right. 2. Amendments HW Hazardous Waste NEJAC National Environmental Justice Advisory Council NOD Notice of It presents new information about technical assistance, environmental justice, social media and other to incorporate guidance on addressing environmental justice EJ concerns. Justice, Cultural, and Tribal Concerns EPA defines environmental justice as the fair treatment and Plan EJ 2014, Office of Environmental Justice, September 2011, p. 3. 4 Ibid.
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 1 to 14) EPA-HQ-OLEM-2019-0172 Law Center, Physicians for Social Responsibility, Clean Air Task Force, Kentucky Resources Council, Environmental Justice Resource Center, Docket ID No. Commission on Civil Rights, 2016 Environmental Justice Examining the Environmental Protection Agency Regional Differences In The Environmental Justice Impact of Coal Ash………..200 VI. Environmental Justice Concerns Must Be Addressed The environmental justice implications of The environmental justice implications of EPA s decision are extremely significant. EPA s Regulatory Impact Analysis Found Environmental Justice Implications. justice problem, while failing to add protections in states where environmental justice communities Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and Findings of Environmental Justice Analysis for Electric Utility Plants For the first comparison, J.2 Environmental Justice Analysis for Offsite Landfills, Siting of New Landfills, and Electricity If this were to occur, the environmental justice impacts could be similar to the demographic comparison
Comment submitted by Thomas Cmar, Deputy Managing Attorney, Coal Program, Earthjustice et al. (Attachments 78 to 92) EPA-HQ-OLEM-2019-0172 Law Center, Physicians for Social Responsibility, Clean Air Task Force, Kentucky Resources Council, Environmental Justice Resource Center, Docket ID No. Commission on Civil Rights, 2016 Environmental Justice Examining the Environmental Protection Agency
Comment submitted by T. Oplt EPA-HQ-OLEM-2019-0172 sprinkled throughout the state, most in locations precariously close to drinking water sources and most in environmental justice communitiescommunities of color that face large economic challenges and have little power against
Comment submitted by Amanda Goodin, Staff Attorney, Earthjustice on behalf of Communities for a Better Environment (CBE) et al.  EPA-HQ-OLEM-2019-0087 findings support the adoption of enforceable requirements to prevent and reduce flaring as a matter of environmental justice for disproportionately impacted low income communities on refinery fence lines. findings support the adoption of enforceable requirements to prevent and reduce flaring as a matter of environmental justice for disproportionately impacted low income communities on refinery fence lines. Yet EPA not only ignores its obligation under Executive Order 12898 to address environmental justice
Comment submitted by Amanda Goodin, Staff Attorney, Earthjustice on behalf of Communities for a Better Environment et al.  EPA-HQ-OLEM-2019-0086 President Clinton s executive order on environmental justice requires federal agencies identify and justice communities. As such, for that same reason, EPA must disclose the impact this action will have on environmental justice Such an approach ignores the cumulative pollution burdens experienced by environmental justice communities Justice.
Petition for Reconsideration submitted by Gordon E. Sommers and Emma C. Cheuse, Counsel, Earthjustice on behalf of Air Alliance Houston et al.  EPA-HQ-OEM-2015-0725 Environmental justice. 4. Environmental data. 5. EPA authority. , Incorporating Environmental Justice Considerations into EPA Disaster Preparedness and Response Some EPA offices have incorporated environmental justice into their office specific guidance about Region 6 staff from the Office of Environmental Justice and Tribal Affairs did conduct outreach with Environmental Justice Not Adequately Addressed in Emergency Response Implementation According Sierra Club 2101 Webster Street, Oakland, California 94612 ; Texas Environmental Justice Advocacy On May 3, 2019, the National Environmental Justice Advisory Council to EPA urged the agency NEJAC highlighted EPA s own recognition that environmental justice, and the disparity in exposure to justice. Justice Groups, June 25, 2019, https www.regulations.gov document? EPA s competitive Environmental Justice EJ Small Grants will support locally led, community driven In FY 2021, EPA will continue to use the Environmental Justice and Community Revitalization Council EJCRC as the central decision making and leadership body for environmental justice and community Environmental Justice and Interagency Coordination In FY 2021, the Agency will enhance coordination Justice EJCRC Environmental Justice and Community Revitalization Council EJIWG Interagency Working
Petition for Reconsideration submitted by Michael J. Myers, Senior Counsel and Sarah K. Kam, Special Assistant Attorney General, New York State Office of the Attorney General et al.  EPA-HQ-OEM-2015-0725 Environmental justice. 4. Environmental data. 5. EPA authority. , Incorporating Environmental Justice Considerations into EPA Disaster Preparedness and Response Some EPA offices have incorporated environmental justice into their office specific guidance about Region 6 staff from the Office of Environmental Justice and Tribal Affairs did conduct outreach with Environmental Justice Not Adequately Addressed in Emergency Response Implementation According
Petition for Reconsideration submitted by Joseph M. Santarella Jr. and Susan J. Eckert, Counsel, Santarella & Eckert, LLC on behalf of United Steelworkers (USW) EPA-HQ-OEM-2015-0725 The IST program received wide support from industry, environmental groups, labor unions, and environmental justice advocates. CgJwRfMaHvlbezFBMSxQ 5 Analysis concluded that risks from RMP facilities fell more heavily on Environmental Justice communities.16 12.
Comment submitted by Khalid Alnahdy, P.E., Environmental Affairs Manager, PCS Phosphate Company, Inc. and Nutrien Ltd EPA-HQ-OAR-2020-0016 our previous comments to EPA, requirements that result in workforce reductions in Aurora would raise environmental justice concerns for employees and contractors at the plant as well as economic concerns for surrounding EPA HQ OAR 2012 0522 0035 providing environmental justice and economic information for the Aurora workforce
Comment submitted by D. Green EPA-HQ-OAR-2020-0016 No consideration was given to the environmental justice impacts of increasing mercury emissions.
Comment submitted by Sierra Club and Earth Justice EPA-HQ-OAR-2019-0312 In order to fulfill the agency s renewed commitment to environmental justice, as outlined in Plan EJ TO ADVANCE ENVIRONMENTAL JUSTICE, EPA MUST REDUCE CUMULATIVE IMPACTS IN OVERBURDENED COMMUNITIES. justice.17 To fulfill its commitment on environmental justice, EPA must address and reduce the cumulative and rulemakings, and set stronger pollution limits to provide environmental justice Order 12898, Federal Actions To Address Environmental Justice, supra. 72 U.S. In recent years, EPA has affirmed its commitment to advance environmental justice. justice. justice for communities highly exposed to toxic contaminants. JUSTICE COALITION; SOUTHERN APPALACHIAN MOUNTAIN STEWARDS; STEPS COALITION; TEXAS ENVIRONMENTAL JUSTICE Justice Advocacy Services, and Utah Physicians for a Healthy Environment . 6. Justice Executive Order, and EPA s own commitment in Plan EJ 2014 to provide greater community transparency justice concerns.41 EPA has since continued to state its objective of demonstrating tangible results Justice in Minority Populations and Low Income Populations, Exec., Exec. sites production files 2016 05 documents 052216_ej_2020_strategic_plan_final_0.pdf. 42 See EPA, Environmental Justice FY2017 Progress Report at 5, https www.epa.gov sites production files 2018 04 documents usepa_fy17
Comment submitted by Tomás Carbonell, Attorney, et al., Environmental Defense Fund (EDF) and Sanjay Narayan, Environmental Law Program, Sierra Club EPA-HQ-OAR-2019-0282 justice concerns, as it threatens to disproportionately subject vulnerable communities to increased justice part of its mission. justice impact of these potential source reclassifications. EPA s Failure to Consider Environmental Justice is Arbitrary and Unlawful. Executive Order 12,898 requires federal agencies, including EPA, to make environmental justice part
Comment submitted by Environmental Defense Fund (EDF) EPA-HQ-OAR-2019-0282 justice concerns around exposure to HAPs. justice populations. justice. Battlesboro, VT Environmental Justice and Health Alliance for Chemical Policy Reform. About the authors Juan Declet Barreto is a Kendall Science Fellow on Environmental Justice and Climate
Comment submitted by Earth Justice on behalf of Louisiana Environmental Action Network et al.  EPA-HQ-OAR-2018-0746 are filed by Louisiana Environmental Action Network, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental deid 199243. 31 Lisa Jackson, Remarks to the National Environmental Justice Advisory Council July 21 working to ensure the agency fulfills environmental justice principles to protect local communities and rulemaking, and set stronger pollution limits to provide environmental justice. If EPA wishes to act on its stated commitment to environmental justice, it should finally start to use
Comment submitted by Earthjustice on behalf of Louisiana Environmental Action Network, et al.  EPA-HQ-OAR-2018-0746 Environmental Action Network, Louisiana Bucket Brigade, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance Environmental Action Network, Louisiana Bucket Brigade, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance the consideration of cumulative exposures to toxic chemicals, which has become a core concern for environmental justice in view of the tendency for disadvantaged communities to be located in areas with a high density impact of exposure to multiple chemicals is one of the requirements of SB25, and a key objective for environmental justice considerations. ACS 2006 and 2009 data, and were selected to represent the regions of California and to include an Environmental Justice community Fresno, CA .
Comment submitted by Earthjustice on behalf of Louisiana Environmental Action Network et al.  EPA-HQ-OAR-2018-0746 Environmental Action Network, Louisiana Bucket Brigade, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance 3 of 4 Others Louisiana Bucket Brigade, California Communities Against Toxics, Texas Environmental Justice Fourth, EPA s commitment to environmental justice must inform its consideration of what level of risk Justice Executive Order to direct all federal agencies to take environmental justice into consideration .135 Administrator Jackson has established an important focus on environmental justice as a key In the new EJ Guidance at 1 , the Administrator also states that achieving environmental justice To fulfill its commitment to make progress toward environmental justice, EPA must do more than merely AMO ACTION COMMITTEE, ENVIRONMENTAL INTEGRITY PROJECT, LOUISIANA BUCKET BRIGADE, SIERRA CLUB, TEXAS ENVIRONMENTAL JUSTICE ADVOCACY SERVICES, UTAH PHYSICIANS FOR A HEALTHY ENVIRONMENT, AND EARTHJUSTICE Earthjustice Amo Action Committee, Environmental Integrity Project, Louisiana Bucket Brigade, Sierra Club, Texas Environmental Justice Advocacy Services or t.e.j.a.s., and Utah Physicians for a Healthy Environment. Matthew Tejada, Director, Office of Environmental Justice tejada.matthew epa.gov Enc Appendix What analysis of environmental justice did we conduct? F. Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and What analysis of environmental justice did we conduct? Executive Order 12898 Federal Actions to Address Environmental Justice in Minority Populations and What analysis of environmental justice did we conduct? F.
Comment submitted by Earthjustice on behalf of Louisiana Environmental Action Network et al.  EPA-HQ-OAR-2018-0746 Environmental Action Network, Louisiana Bucket Brigade, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance 1 of 4 Other submitters Louisiana Bucket Brigade, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance John, Justice and Beyond, and Environmental Justice Health Alliance, requesting that EPA hold at least EPA also admits that this pollution poses significant environmental justice concerns for exposed communities Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental working to ensure the agency fulfills environmental justice principles to protect local communities deid 199243. 37 Lisa Jackson, Remarks to the National Environmental Justice Advisory Council July 21 and rulemaking, and set stronger pollution limits to provide environmental justice. If EPA wishes to act on its stated commitment to environmental justice, it should finally start to use The Center believes in and advocates for environmental justice for all species, including people. Purported Compliance With NAAQS or Other Standards Does Not Constitute per se Environmental Justice concerns about the impacts of Ethylene Oxide on environmental justice communities. EJScreen is EPA s environmental justice screening and mapping tool that provides EPA with a nationally Purported Compliance with NAAQS or Other Standards Does Not Constitute per se Environmental Justice
Comment submitted by Adrian Shelley, Director, Texas Office, Public Citizen EPA-HQ-OAR-2018-0746 Risk from toxic emitting facilities is an Environmental Justice hazard. It invariably low income communities of color that is, environmental justice communities that are burdened Environmental justice communities are also more vulnerable to the health impacts of exposure to toxic The EPA has ignored the disproportionate impact to environmental justice communities and, in so doing , has ignored the mandate of Executive Order 12898, the Environmental Justice Executive Order.
Comment submitted by American Chemistry Council (ACC) EPA-HQ-OAR-2018-0746 intended to protect against appreciable risk of harmful effects to susceptible groups like children or environmental justice communities. that are highly conservative and protective of susceptible population groups, including children and environmental justice populations Exposure Assessment Likely Contributes to Overestimated Risk.
Comment submitted by Toby Baker, Executive Director, Texas Commission on Environmental Quality (TCEQ) EPA-HQ-OAR-2018-0746 COUNCIL ACC ………………………………………….. 4 COMMENTS FROM SIERRA CLUB, TEXAS ENVIRONMENTAL JUSTICE ADVOCACY SERVICES, AIR ALLIANCE HOUSTON, COASTAL ALLIANCE TO PROTECT OUR ENVIRONMENT, ENVIRONMENT Justice Advocacy Services, Air Alliance Houston, Coastal Alliance to Protect our Environment, Environment JUSTICE ADVOCACY SERVICES, AIR ALLIANCE HOUSTON, COASTAL ALLIANCE TO PROTECT OUR ENVIRONMENT, ENVIRONMENT Comments from Sierra Club, Texas Environmental Justice Advocacy Services, Air Alliance Houston, Coastal
Comment submitted by Earthjustice on behalf of Louisiana Environmental Action Network et al.  EPA-HQ-OAR-2018-0746 are filed by Louisiana Environmental Action Network, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance COMMENTS OF SIERRA CLUB, TEXAS ENVIRONMENTAL JUSTICE ADVOCACY SERVICES, AIR ALLIANCE HOUSTON, COASTAL The above listed environmental, health, and environmental justice organizations submit the following Justice Collaborative Action Plan in 2016, there are significant environmental justice concerns for D EPA HQ OAR 2017 0688 0089. 35 National Environmental Justice Advisory Council letter May 3, 2019 TCEQ has a responsibility to consider and address environmental justice, for similar reasons stated Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental deid 199243. 31 Lisa Jackson, Remarks to the National Environmental Justice Advisory Council July 21 working to ensure the agency fulfills environmental justice principles to protect local communities and rulemaking, and set stronger pollution limits to provide environmental justice. If EPA wishes to act on its stated commitment to environmental justice, it should finally start to use
Comment submitted by Emma Cheuse, Staff Attorney, Earthjustice et al. (3 of 4) EPA-HQ-OAR-2018-0746 Others Sierra Club, Friends of the Earth, Environmental Justice Health Alliance for Chemical Policy 05 03 2019 letter from Richard Moore, Chair, National Environmental Justice Advisory Council NEJAC , NATIONAL ENVIRONMENTAL JUSTICE ADVISORY COUNCIL A Federal Advisory Committee to the U.S. Justice Advisory Council NEJAC is very concerned about the impacts of Ethylene Oxide on environmental justice communities. We also have significant concerns for members of environmental justice communities exposed to Ethylene Due to our concerns about public health for environmental justice communities, we make the following Moving environmental justice indoors Understanding structural influences on residential exposure patterns
Comment submitted by Senator Tammy Duckworth et al.  EPA-HQ-OAR-2018-0746 one of the most impactful; it regulates a large number of polluters and is of critical importance to environmental justice communities that EPA identifies as being disproportionately impacted by the pollution covered This disproportionate exposure led the National Environmental Justice Advisory Council to send EPA a require compliance with Clean Air Act standards even during periods of malfunction, as is National Environmental Justice Advisory Council Letter to EPA available at https www.epa.goy sites production fi1es 2019
Comment submitted by Stephanie Herron, Organizer on behalf of Environmental Justice Health Alliance for Chemical Policy Reform (EJHA) EPA-HQ-OAR-2018-0746 Please see the attached comments submitted on behalf of the Environmental Justice Health Alliance for I am submitting these comments on behalf of the Environmental Justice Health Alliance for Chemical Another one of our affiliate members, from the Delaware Concerned Residents for Environmental Justice Environmental Justice means applying the precautionary principle . EPA should listen to the recommendations of the National Environmental Justice Advisory Council in Stephanie Herron Organizer Environmental Justice Health Alliance for Chemical Policy Reform EJ4all.net
Comment submitted by Pam Nixon, People Concerned About Chemical Safety EPA-HQ-OAR-2018-0746 Life At The Fenceline; Understanding Cumulative Health Hazards In Environmental Justice Communities. Environmental Justice Health Alliance For Chemical Policy Reform, Coming Clean, Campaign for Healthier
Comment submitted by Earthjustice on behalf of Louisiana Environmental Action Network et al.  EPA-HQ-OAR-2018-0746 Environmental Action Network, Louisiana Bucket Brigade, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance Environmental Action Network, Louisiana Bucket Brigade, California Communities Against Toxics, Texas Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Health Alliance for Chemical Policy Reform, People Concerned About Chemical Safety, Air Alliance represented Air Alliance Houston, Community In Development Association, Louisiana Bucket Brigade, and Texas Environmental Justice Advocacy Services. Amo Action Committee, Environmental Integrity Project, Louisiana Bucket Brigade, Sierra Club, Texas Environmental Justice Advocacy Services, Utah Physicians for a Healthy Environment, and Earthjustice. AMO ACTION COMMITTEE, ENVIRONMENTAL INTEGRITY PROJECT, LOUISIANA BUCKET BRIGADE, SIERRA CLUB, TEXAS ENVIRONMENTAL JUSTICE ADVOCACY SERVICES, UTAH PHYSICIANS FOR A HEALTHY ENVIRONMENT, AND EARTHJUSTICE While Amo Action Committee, Environmental Integrity Project, Louisiana Bucket Brigade, Sierra Club, Texas Environmental Justice Advocacy Services or T.E.J.A.S., and Utah Physicians for a Healthy Environment.1 Because Matthew Tejada, Director, Office of Environmental Justice tejada.matthew epa.gov Associate General
Comment submitted by Brendan Mascarenhas, Director, Regulatory and Technical Affairs, American Chemistry Council (ACC) EPA-HQ-OAR-2018-0746 justice communities. Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental Justice Advocacy Services, Ohio Valley Environmental Coalition, Environmental Integrity Project, Environmental
Comment submitted to C. Flores EPA-HQ-OAR-2018-0746 05 03 2019 letter from Richard Moore, Chair, National Environmental Justice Advisory Council NEJAC NATIONAL ENVIRONMENTAL JUSTICE ADVISORY COUNCIL A Federal Advisory Committee to the U.S. Justice Advisory Council NEJAC is very concerned about the impacts of Ethylene Oxide on environmental justice communities. We also have significant concerns for members of environmental justice communities exposed to Ethylene Due to our concerns about public health for environmental justice communities, we make the following EPA must consider and provide for environmental justice communities across the nation. EPA must listen to the National Environmental Justice Advisory Council.
Comment submitted by Earthjustice et al.  EPA-HQ-OAR-2018-0746 Others Sierra Club, Friends of the Earth, Environmental Justice Health Alliance for Chemical Policy justice groups, write to urge EPA to bring relief to communities across the country suffering from Justice Advocacy Council urged EPA to strengthen protections from ethylene oxide at all emitting sources Sincerely, t.e.j.a.s Earthjustice Sierra Club Friends of the Earth Environmental Justice Reg. 7,629 Feb. 11, 1994 ; EPA, Technical Guidance for Assessing Environmental Justice in Regulatory Analysis June 2016 ; EPA, Environmental Justice 2020 Action Agenda Oct. 2016 .
Comment submitted by Earthjustice et al. (2 of 4) EPA-HQ-OAR-2018-0746 D 0082 has main comment Others Sierra Club, Friends of the Earth, Environmental Justice Health Alliance In order to fulfill the agency s renewed commitment to environmental justice, as outlined in Plan EJ TO ADVANCE ENVIRONMENTAL JUSTICE, EPA MUST REDUCE CUMULATIVE IMPACTS IN OVERBURDENED COMMUNITIES. justice.17 To fulfill its commitment on environmental justice, EPA must address and reduce the cumulative and rulemakings, and set stronger pollution limits to provide environmental justice Order 12898, Federal Actions To Address Environmental Justice, supra. 72 U.S. In recent years, EPA has affirmed its commitment to advance environmental justice. justice. justice for communities highly exposed to toxic contaminants. JUSTICE COALITION; SOUTHERN APPALACHIAN MOUNTAIN STEWARDS; STEPS COALITION; TEXAS ENVIRONMENTAL JUSTICE Justice Advocacy Services, and Utah Physicians for a Healthy Environment . 6. Environmental justice. 4. Environmental data. 5. EPA authority. , Incorporating Environmental Justice Considerations into EPA Disaster Preparedness and Response Some EPA offices have incorporated environmental justice into their office specific guidance about Region 6 staff from the Office of Environmental Justice and Tribal Affairs did conduct outreach with Environmental Justice Not Adequately Addressed in Emergency Response Implementation According
Comment submitted by Earthjustice et al. (1 of 4) EPA-HQ-OAR-2018-0746 Others Sierra Club, Friends of the Earth, Environmental Justice Health Alliance for Chemical Policy Toward environmental justice spatial equi ty in Ohio and Cleveland. Environmental justice human health and environmental inequalities. Me thodological Approach of the Environmental Justice Screening Method. EPA S ENVIRONMENTAL JUSTICE STRATEGIC ENFORCEMENT ASSESSMENT TOOL. Cal EPA s October 2004 Environmental Justice Action Plan Appendix 2.
Comment submitted by Earthjustice et al. (4 of 4) EPA-HQ-OAR-2018-0746 Others Sierra Club, Friends of the Earth, Environmental Justice Health Alliance for Chemical Policy
Comment submitted by Letitia James, Attorney General of New York et al. and the Puget Sound Clean Air Agency EPA-HQ-OAR-2018-0195 proposal to allow a sell through of non compliant wood heaters will also disproportionately affect environmental justice communities. 2. EPA Failed to Comply with Its Obligations under Executive Order 12898 to Address Environmental Justice The Proposed Rule does not meaningfully address its environmental justice impacts caused by extending justice communities, and encourage consumer fraud.
Comment submitted by Garrison Kaufman, President, Western States Air Resources Council (WESTAR) EPA-HQ-OAR-2018-0195 Executive Order 12898 Federal Actions To Address Environmental Justice in Minority Populations and
Comment submitted by Paul J. Miller, Executive Director, Northeast States for Coordinated Air Use Management (NESCAUM) EPA-HQ-OAR-2018-0195 Fails to Evaluate Impacts on Environmental Justice and Low Income Communities Data supplied to the
Comment submitted by Rosalie Winn et al.,Environmental Defense Fund (EDF) et al. (Supplemental Comment) EPA-HQ-OAR-2017-0757 result in emissions increases.74 Under Executive Order 12,898, EPA is obligated to consider the environmental justice impacts of its actions.75 EPA has said that it believes this proposed action is unlikely to As a result, EPA has not adequately assessed the environmental justice impacts of either proposal.
Comment submitted by L. Vasarhelyi & A. Groziak EPA-HQ-OAR-2017-0757 Fully comply with EO 12898 by considering the impacts of the 2019 NSPS proposal on environmental justice The agencies actions show that, if it has considered environmental justice implications at all, it Environmental Justice. The Administrator should include international environmental justice impacts from accelerated climate The 2019 NSPS proposal will have disproportionate public health impacts on Environmental Justice
Supplemental Comments submitted by Rosalie Winn, Senior Attorney, U.S. Clean Air, Environmental Defense Fund (EDF) EPA-HQ-OAR-2017-0757 Additional environmental justice concerns compound the issue. Supp. 3d 101, 140 D.D.C. 2017 holding agency s bare bones environmental justice analysis concluding substitute its judgment for that of the agency . 40 The Court notes that Standing Rock discussed environmental justice claim separately from other hard look claims under NEPA. Because the parties briefed environmental justice as part of hard look of public health impacts specifically
Comment submitted by Rosalie Winn, Senior Attorney, U.S. Clean Air, Environmental Defense Fund (EDF) EPA-HQ-OAR-2017-0483 Additional environmental justice concerns compound the issue. Supp. 3d 101, 140 D.D.C. 2017 holding agency s bare bones environmental justice analysis concluding substitute its judgment for that of the agency . 40 The Court notes that Standing Rock discussed environmental justice claim separately from other hard look claims under NEPA. Because the parties briefed environmental justice as part of hard look of public health impacts specifically
Comment submitted by Rosalie Winn et al., Environmental Defense Fund (EDF) et al. (Supplemental Comment) EPA-HQ-OAR-2017-0483 result in emissions increases.74 Under Executive Order 12,898, EPA is obligated to consider the environmental justice impacts of its actions.75 EPA has said that it believes this proposed action is unlikely to As a result, EPA has not adequately assessed the environmental justice impacts of either proposal.
Petition for Reconsideration submitted by Emma C. Cheuse, Staff Attorney, Earthjustice on behalf of RISE St. James et al.  EPA-HQ-OAR-2017-0357 James, Louisiana Bucket Brigade, Louisiana Environmental Action Network, Texas Environmental Justice Baton Rouge, LA 70896 , Sierra Club 2101 Webster Street, Suite 1300, Oakland, CA 94612 , and Texas Environmental Justice Advocacy Services t.e.j.a.s. 900 North Wayside Drive, Houston, TX 77023 . Justice at 14 15, 26 29 Nov. 2002 , https www.epa.gov sites production files 2015 02 documents fish consump The National Environmental Justice Advisory Council NEJAC has called EPA s use of default values James, Louisiana Bucket Brigade, Louisiana Environmental Action Network, Texas Environmental Justice represented Air Alliance Houston, Community In Development Association, Louisiana Bucket Brigade, and Texas Environmental Justice Advocacy Services.
Comment submitted by Jane Williams, Executive Director, California Communities Against Toxics, and Emma Cheuse and David Baron, Attorneys, Earthjustice EPA-HQ-OA-2020-0128 consideration of cost and the reduction of regulation over those focusing on protection of health, environmental justice, and environmental quality. 2 This
Comment submitted by G. Tracy Mehan, III, Executive Director of Government Affairs, American Water Works Association (AWWA) EPA-HQ-OA-2020-0128 Consideration of environmental justice EPA should be clear in finalizing this rulemaking that the Agency
Comment submitted by Laura Hepler and Stephan Chenault, Co-Chairs New York City Environmental Justice Committee [A-95-58-IV-D-11-826] EPA-HQ-OAR-2004-0394
Comment submitted by Neil Gormley and James S. Pew, Earthjustice et al.  EPA-HQ-OAR-2018-0794 or justify its change in position with respect to the significance of distributional concerns and environmental justice for the appropriate and necessary finding.
Mass Mail Campaign 98: Comment from Patricia Rabano, Round Valley Indian Tribes, (Total as of 6/16/2020: 8) CEQ-2019-0003 The Elimination of the Cumulative Impacts Analysis Raises Environmental Justice Concerns That Should justice effects typically occurs. justice concerns. justice. justice.
Mass Mail Campaign 93: Comment from William Maynard, (Total as of 6/16/2020: 8) CEQ-2019-0003 NEPA promotes environmental justice by requiring federal agencies to include a study and disclosure for
Mass Mail Campaign 92: Comment from Josue Aguilar , NRDC Action Fund, (Total as of 6/16/2020: 103312) CEQ-2019-0003 The proposed regulations will put environmental justice communities at risk. No NEPA means no environmental justice for average Americans who continue to stand ready to take up the The need to continue assessing the environmental impact of ongoing human development coupled with environmental justice issues concerning low income neighborhoods necessitates looking at alternatives as our country
Mass Mail Campaign 7: Comment from Kent Borges, (Total as of 6/16/2020: 11510) CEQ-2019-0003 NEPA promotes environmental justice by requiring federal agencies to include study and disclosure of
Mass Mail Campaign 26: Comment from Jack Braun, (Total as of 6/16/2020: 651) CEQ-2019-0003 has been very successful in protecting public safety, and has been an important tool for frontline environmental justice communities.
Mass Mail Campaign 19: Comment from Kaela Mansfield, (Total as of 6/16/2020: 1069) CEQ-2019-0003 For this reason, I am especially concerned about the environmental justice impacts of this rulemaking
Mass Mail Campaign 105: Comment from Eugene Takahashi, (Total as of 6/16/2020: 7) CEQ-2019-0003 NEPA promotes environmental justice by requiring federal agencies to include study and disclosure of
Mass Mail Campaign 104: Comment from Kelsey Kelly, (Total as of 6/16/2020: 7) CEQ-2019-0003 Environmental Justice would no longer be taken into consideration for any new project.
MM105 Comment from Richard Voget, Retired CEQ-2019-0003 Sierra Club and Wallingford Indivisible, which are groups concerned with environmental policies and environmental justice.
MM104 Comment from Linda Sperath, CEQ-2019-0003 Environmental Justice would no longer be taken into consideration for any new project.
MM104 Comment from Ellen Gerkens, CEQ-2019-0003 Environmental Justice would no longer be taken into consideration for any new project.
MM104 Comment from Anonymous Anonymous, CEQ-2019-0003 Environmental Justice would no longer be taken into consideration for any new project.
MM104 Comment from rognvald garden, CEQ-2019-0003 Environmental Justice would no longer be taken into consideration for any new project.
MM104 Comment from Martha Brimm, CEQ-2019-0003 Environmental Justice would no longer be taken into consideration for any new project.
MM104 Comment from Katherine DeVore, CEQ-2019-0003 Environmental Justice would no longer be taken into consideration for any new project.
Comment from Lisa Feldt, CEQ-2019-0003 Environmental Justice in Minority and Low Income Populations, 59 Fed. Justice & NEPA Committee, Interagency Working Group on Environmental Justice, Mar. 2016. 94 Promising Justice & NEPA Committee, Interagency Working Group on Environmental Justice, Mar. 2016. 17 E.O. 12898 requires all agencies make achieving environmental justice part of their mission. as a minority environmental justice community.
Comment from David Wieland, CEQ-2019-0003 Project Officer, I found NEPA requirements to be necessary and prudent safeguards of natural resources & environmental justice that the Courts and People of good conscience support.
MM7 Comment from Janine Galbicsek, CEQ-2019-0003 NEPA promotes environmental justice by requiring federal agencies to include study and disclosure of

Regression Tables

# library(stargazer)
#stargazer::stargazer(m_PR, m_PR_agency, mejPR, mejPR_agency, type = "html")

library(modelsummary)
models <- list(
  "1" = m_PR, 
  "2" = m_PR_agency,
  "3"  =  mejPR,
  "4" = mejPR_agency
)

rows <- tibble(
  term = c("President FE", "Agency FE"),
  `1` = c("X", ""), 
  `2` =c("X", "X"), 
  `3`  = c("X", ""), 
  `4` = c("X", "X")
)


attr(rows, 'position') <- c(10,11)

# paper table 
modelsummary::modelsummary( models, 
                            stars = TRUE, 
                            coef_omit = "president.*|agency.*|Intercept", 
                          add_rows = rows, 
                          notes = "Full Table in the Online Appendix")
1 2 3 4
ej_commentTRUE 3.363*** 2.414*** 0.717*** 0.748***
(0.221) (0.240) (0.243) (0.246)
log(comments + 1) 0.068** 0.232*** -0.147*** -0.156***
(0.028) (0.036) (0.032) (0.033)
ej_comments_unique 0.005 0.227*** 0.032** 0.036**
(0.006) (0.068) (0.014) (0.014)
ej_commentTRUE × log(comments + 1) -0.227*** -0.226*** 0.071 0.069
(0.052) (0.072) (0.050) (0.051)
Num.Obs. 11721 11721 1885 1885
President FE X X X X
Agency FE X X
AIC 3868.6 3125.6 2180.4 2166.5
BIC 3927.5 3464.6 2224.7 2327.2
Log.Lik. -1926.296 -1516.818 -1082.192 -1054.252
Full Table in the Online Appendix
* p < 0.1, ** p < 0.05, *** p < 0.01
save(models, rows,   m_PR, 
 m_PR_agency,
mejPR,
mejPR_agency,
     file = "ej_models.Rdata")

# full table 
m <- modelsummary::modelsummary( models, 
                            stars = TRUE,
                            title = "Including President and Agency Dummies") %>% 
  kable_styling() %>% 
  scroll_box(height = "400px")

TODO

  • Parse agencies by the frequency of their EJ analyis and interact this with e_comment as a more direct test of the policy receptivity hypothesis

  • Transform ej_comments to reduce corr with ej_comment

  • Dedupe PRs and FRs, or at least explore sensitivity to which of multiple PRs is used. Selected oncomments. The PR with the most comments is most likely the main PR, but many have 0 comments. Perhaps also then on posted_date? However, date is complicated. A later PR could be an extension of the comment period. A later FR could be a small amendment. New metadata may help with this.

  • Compare new and old API metadata to make (comment counts are slightly different)

  • Explore new detailed comment metadata

  • Compare % in change in 12898 sections vs. rule text vs. response to comment. This requires classifying responses to comment vs. adding 12898 section (in most cases, they are adding a 12898 section)

  • Fix +1 shift in predicted prob of logged vars

  • Investigate other estimators & clogit

Extensions

  • Compare topic proportions for cut and added text with comment texts.

  • Replicate with “climate change” + “global warming” (other ideas: class and race: “inequality” “low income” “racial” “minority population”)